diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-04-08 22:00:14 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-04-08 22:00:14 +0000 |
commit | 7559e6fb5fa6d8446955c71cce74949ea4aa0179 (patch) | |
tree | b76bcc7824d045f94d130ae80d3fc37d0a432fa3 /fstests | |
parent | ddf92ab8b9ad62df2506784bda9eb1de922a42fc (diff) |
Formerly Makefile.~17~
Diffstat (limited to 'fstests')
-rw-r--r-- | fstests/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/fstests/Makefile b/fstests/Makefile index d6043cd3..bf4969fe 100644 --- a/fstests/Makefile +++ b/fstests/Makefile @@ -22,7 +22,6 @@ include ../Makeconf DIST_FILES = fstests.c Makefile fdtests.c OBJS=fdtests.o #fstests.o -testprog = fdtests all: fdtests @@ -30,10 +29,12 @@ fstests: $(OBJS) $(libc); $(link) fdtests: $(OBJS) $(libc); $(link) -install: $(testprog) $(hurdroot) - cp $< $(hurdroot)/bin/$(testprog) +install: fdtests fstests $(hurdroot) + cp fdtests $(hurdroot)/bin/fdtests + cp fstests $(hurdroot)/bin/fstests + clean: - rm -f fstests fstests.o + rm -f fstests relink: rm -f fstests |