diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-07-21 19:10:49 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-07-21 19:10:49 +0000 |
commit | cc1bc3124e26030497488c2c139b6787618caa5c (patch) | |
tree | 5d3c9ede090a301ea8a4aafbd2ffbaa8a84c82e6 | |
parent | c14695e1d04307a2f76524946a0e18b3a8fd7d0f (diff) |
Formerly Makefile.~2~
-rw-r--r-- | utils/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile index aa5bfd59..feb4a45f 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -23,13 +23,18 @@ DIST_FILES = Makefile $(SRCS) ChangeLog sh.ChangeLog ps.ChangeLog UTILS=sh ps su SRCS = $(addsuffix .c,$(UTILS)) -OBJS = $(addsuffix .o,$(UTILS)) UTILS_INST = $(addprefix $(hurdroot)/bin/,$(UTILS)) all: $(UTILS) install: $(UTILS_INST) +clean: + rm -f $(UTILS) + +relink: + rm -f $(UTILS) + $(UTILS_INST): $(hurdroot) $(hurdroot)/bin/%: % |