X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=man%2FMakefile;h=5ce78d273584c1445dec990dcae62d36a93ecb6d;hb=0f491c1083161c021800689e467902d140758cdc;hp=a270d5a46d5ba285fdff9d26072021586a1b9008;hpb=afa9772e3fcbb4e80e3e4cfd1a40b4fccc6d08b8;p=chise%2Fxemacs-chise.git.1 diff --git a/man/Makefile b/man/Makefile index a270d5a..5ce78d2 100644 --- a/man/Makefile +++ b/man/Makefile @@ -22,11 +22,12 @@ SHELL = /bin/sh MAKEINFO = makeinfo TEXI2DVI = texi2dvi +RM = rm -f .SUFFIXES: .SUFFIXES: .info .texi .dvi -RECURSIVE_MAKE = $(MAKE) $(MFLAGS) MAKEINFO='$(MAKEINFO)' TEXI2DVI='$(TEXI2DVI)' +RECURSIVE_MAKE_ARGS = $(MAKE) $(MFLAGS) MAKEINFO='$(MAKEINFO)' TEXI2DVI='$(TEXI2DVI)' all : info @@ -160,6 +161,7 @@ lispref-srcs = \ lispref/numbers.texi \ lispref/objects.texi \ lispref/os.texi \ + lispref/packaging.texi \ lispref/positions.texi \ lispref/processes.texi \ lispref/range-tables.texi \ @@ -264,9 +266,9 @@ new-users-guide.info : $(INFODIR)/new-users-guide.info info : $(info_files) # tm: FRC.tm -# cd ./tm && $(RECURSIVE_MAKE) +# cd ./tm && $(MAKE) $(RECURSIVE_MAKE_ARGS) # gnats: FRC.gnats -# cd ./gnats && $(RECURSIVE_MAKE) +# cd ./gnats && $(MAKE) $(RECURSIVE_MAKE_ARGS) # FRC.xemacs FRC.lispref FRC.new-users-guide FRC.internals FRC.tm FRC.gnats: .PHONY: info dvi @@ -290,11 +292,11 @@ dvi : $(dvi_files) .PHONY: mostlyclean clean distclean realclean extraclean mostlyclean: - rm -f *.toc *.aux *.log *.op *.cp *.cps *.fn *.fns - rm -f *.ky *.kys *.pg *.pgs *.tp *.tps *.vr *.vrs + $(RM) *.toc *.aux *.log *.op *.cp *.cps *.fn *.fns + $(RM) *.ky *.kys *.pg *.pgs *.tp *.tps *.vr *.vrs clean: mostlyclean - rm -f core *.dvi + $(RM) core *.dvi distclean: clean realclean: distclean extraclean: distclean - rm -f *~ \#* */*~ */\#* + $(RM) *~ \#* */*~ */\#*