1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#$Id: Makefile.0,v 1.9 1994/09/27 15:03:36 berg Exp $
all: $(MANSS)
make:
@$(SHELL) -c "exit 0"
.PRECIOUS: Makefile
../config.check:
@cd ..; $(MAKE) config.check
man.sed: man_sed
man_sed:
@cd ../src; $(MAKE) ../man/man.sed
clean:
$(RM) $(MANSS) man.sed* _Makefile *core*
Makefile: ../Makefile Makefile.0
@echo "You have made changes to the master Makefile, in order for"
@echo "these changes to show through, you will first have to do:"
@echo "$(MAKE) makefiles"
makefiles Makefiles makefile:
cd ..; $(MAKE) makefiles
init:
cd ..; $(MAKE) $@
|