# $Header: /diskb/home/alexis/dev/ppplc/lib/RCS/Makefile,v 1.26 1999/01/07 13:03:21 alexis Exp $ SUPPORT_DIR = ../support include ../Makefile.defs COMPONENTS = isps mail misc modems news ppp compile: 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 \ $(PRGLIBDIR) for DIR in $(COMPONENTS); do \ ( cd $$DIR && $(MAKE) $@ ) || exit 1; \ done uninstall: for DIR in $(COMPONENTS); do \ ( cd $$DIR && $(MAKE) $@ ) || exit 1; \ done -rmdir $(PRGLIBDIR)