# $Id: Makefile,v 1.37 1997/10/26 20:54:30 alexis Exp $ ################################################################################ # # DON'T MODIFY ANYTHING BELOW HERE # ################################################################################ include Makefile.defs # In the following list, put the example directories *after* the corresponding # non-example directories COMPONENTS = bin man compile clean uninstall: for DIR in $(COMPONENTS); do \ ( cd $$DIR && $(MAKE) $@ ) || exit 1; \ done install: compile $(INSTALL) -m 755 -o root -g root -d $(LCLDIR) \ $(LCLBINDIR) $(LCLMANDIR) $(LCLDOCDIR) \ $(LCLLIBDIR) for DIR in $(COMPONENTS); do \ ( cd $$DIR && $(MAKE) $@ ) || exit 1; \ done release: mtn-mkrel.pl mkrel # Here are a couple of targets that a binary release will try to make. # They are only here for 'make_release' to make things it know it has to # make in order to make a binary release. # Phoney targets are more efficient, but force targets are more portable, so # we use the latter. bin/mtn: FORCE cd bin && $(MAKE) mtn FORCE: