diff options
author | Roland McGrath <roland@gnu.org> | 1994-04-06 01:36:53 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-04-06 01:36:53 +0000 |
commit | 452516a5400b458b9cd83779dec0598aeeb0a8fd (patch) | |
tree | 6a862a7234b10f5f9ecdada50a43b00b5e9a2c1a /fstests | |
parent | 02a5e878336a7608b89251fc749548f69a43c503 (diff) |
Formerly Makefile.~13~
Diffstat (limited to 'fstests')
-rw-r--r-- | fstests/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/fstests/Makefile b/fstests/Makefile index 6cc1bd11..6bd388ef 100644 --- a/fstests/Makefile +++ b/fstests/Makefile @@ -21,14 +21,17 @@ include ../Makeconf DIST_FILES = fstests.c Makefile fdtests.c -OBJS=fstests.o +OBJS=fdtests.o #fstests.o +testprog = fdtests -all: fstests +all: fdtests -fstests: $(OBJS); $(link) +fstests: $(OBJS) $(libc); $(link) +fdtests: $(OBJS) $(libc); $(link) -install: fstests $(hurdroot) - cp fstests $(hurdroot)/hurd/init + +install: $(testprog) $(hurdroot) + cp $< $(hurdroot)/hurd/init clean: rm -f fstests fstests.o |