summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/Makefile7
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/%: %