diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-07-22 16:26:10 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-07-22 16:26:10 +0000 |
commit | 7f135c06d1ea088cb81b145835d960f5010b458e (patch) | |
tree | 911c6109270fcd082ddae315d3eb1ba797b2a656 | |
parent | c71e05fcc21bb1ca4d3cbc97aa352ec2c3ca41d8 (diff) |
Formerly Makefile.~3~
-rw-r--r-- | utils/Makefile | 30 |
1 files changed, 5 insertions, 25 deletions
diff --git a/utils/Makefile b/utils/Makefile index feb4a45f..0693c890 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -16,30 +16,10 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dir := utils -include ../Makeconf - -DIST_FILES = Makefile $(SRCS) ChangeLog sh.ChangeLog ps.ChangeLog - -UTILS=sh ps su - -SRCS = $(addsuffix .c,$(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/%: % - $(INSTALL_BIN) $^ $@ - - +makemode := utilities +SRCS = sh.o ps.o su.o +targets = sh ps su +DIST_FILES = sh.ChangeLog ps.ChangeLog +include ../Makeconf |