From 529d944a18c38aaaae4329f5069af23c65635e54 Mon Sep 17 00:00:00 2001 From: jcargill Date: Wed, 16 Feb 1994 16:00:12 +0000 Subject: [PATCH] Added other rules: clean, install, install-man. Make with no arguments now builds everything (make all), but doesn't install it. "make install" seemed non-intuitive as a default rule. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a665765..eed893a 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,9 @@ subsystems = util rtinst thread paradyn paradynd paradyndSIM igen -all: +all clean install install-man: for subsystem in $(subsystems); do \ - if [ -f $$subsystem/$(PLATFORM)/Makefile ]; then \ - cd $$subsystem/$(PLATFORM); make install; cd ../.. \ + if [ -f $$subsystem/$(PLATFORM)/Makefile ]; then \ + cd $$subsystem/$(PLATFORM); $(MAKE) $@; cd ../.. \ else true; fi \ done -- 1.8.3.1