head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 99.01.07.13.30.56; author alexis; state Exp; branches; next ; desc @standardised! This was a non-comformant Makefile system @ 1.1 log @Initial revision @ text @# $Header: Makefile,v 1.8 1998/11/09 10:35:26 alexis Exp alexis $ SUPPORT_DIR = ../support include ../Makefile.defs COMPONENTS = examples FILES = COPYING INSTALL README.1ST TODO compile: $(FILES) for DIR in $(COMPONENTS); do \ ( cd $$DIR && $(MAKE) $@@ ) || exit 1; \ done clean: for DIR in $(COMPONENTS); do \ ( cd $$DIR && $(MAKE) $@@ ) || exit 1; \ done install: compile $(INSTALL_CMD) -o root -g root -m 555 -d \ $(PRGDOCDIR) $(INSTALL_CMD) -o root -g root -m 444 $(FILES) \ $(PRGDOCDIR) for DIR in $(COMPONENTS); do \ ( cd $$DIR && $(MAKE) $@@ ) || exit 1; \ done uninstall: for DIR in $(COMPONENTS); do \ ( cd $$DIR && $(MAKE) $@@ ) || exit 1; \ done -cd $(PRGDOCDIR) && rm -f $(FILES) -cd / && rmdir $(PRGDOCDIR) @