# HG changeset patch # User ben # Date 988701827 0 # Node ID 4137b1fb7b90680d4553ef7c9a3aa91be484a4b0 # Parent 610e4ba94a4d7c0aa2afe6b2a8f9fa026ff8c976 [xemacs-hg @ 2001-05-01 07:23:47 by ben] * xemacs.mak (DEPEND): Don't add config.inc to the horked depend file. It's not recognized by nmake and just results in warnings. * xemacs.mak (docfile): Don't use $(DEL) in the middle of a shell command, because it will try to call `-del' and fail. diff -r 610e4ba94a4d -r 4137b1fb7b90 nt/ChangeLog --- a/nt/ChangeLog Mon Apr 30 10:13:10 2001 +0000 +++ b/nt/ChangeLog Tue May 01 07:23:47 2001 +0000 @@ -1,3 +1,22 @@ +2001-05-01 Ben Wing + + * xemacs.mak (DEPEND): + Don't add config.inc to the horked depend file. It's not + recognized by nmake and just results in warnings. + * xemacs.mak (docfile): + Don't use $(DEL) in the middle of a shell command, because it + will try to call `-del' and fail. + +2001-04-23 Ben Wing + + * minitar.c: + * minitar.c (Usage): + * minitar.c (octal): + * minitar.c (makepath): + * minitar.c (main): + Fix more compiler warnings, clean up the style to conform + more to standard XEmacs. + 2001-04-27 Adrian Aichner * compface.mak (clean): New target. diff -r 610e4ba94a4d -r 4137b1fb7b90 nt/xemacs.mak --- a/nt/xemacs.mak Mon Apr 30 10:13:10 2001 +0000 +++ b/nt/xemacs.mak Tue May 01 07:23:47 2001 +0000 @@ -322,13 +322,13 @@ ! if defined(_) ! if [perl -p -e "s/^\\x23if defined(.+)/!if defined$$1/; s/^\\x23e/!e/;" \ -e "s/([\\s=^])([\\w\\d\\.\\-^]+\\.[ch^])/$$1$(SRC:\=\\\\)\\\\$$2/g;" \ - -e "s/^(.+)\\.o:(.+)/$(OUTDIR:\=\\\\)\\\\$$1.obj:$$2 $(NT:\=\\\\)\\\\config.inc/;" \ + -e "s/^(.+)\\.o:(.+)/$(OUTDIR:\=\\\\)\\\\$$1.obj:$$2/;" \ < $(SRC)\depend > $(OUTDIR)\depend.tmp] ! endif ! else ! if [perl -p -e "s/^\x23if defined(.+)/!if defined$$1/; s/^\x23e/!e/;" \ -e "s/([\s=^])([\w\d\.\-^]+\.[ch^])/$$1$(SRC:\=\\)\\$$2/g;" \ - -e "s/^(.+)\.o:(.+)/$(OUTDIR:\=\\)\\$$1.obj:$$2 $(NT:\=\\)\\config.inc/;" \ + -e "s/^(.+)\.o:(.+)/$(OUTDIR:\=\\)\\$$1.obj:$$2/;" \ < $(SRC)\depend > $(OUTDIR)\depend.tmp] ! endif ! endif @@ -1342,7 +1342,7 @@ docfile :: $(DOC) $(DOC): $(LIB_SRC)\make-docfile.exe $(DOC_SRC1) $(DOC_SRC2) $(DOC_SRC3) $(DOC_SRC4) $(DOC_SRC5) $(DOC_SRC6) $(DOC_SRC7) $(DOC_SRC8) $(DOC_SRC9) $(DOC_SRC10) $(DOC_SRC11) - if exist $(DOC) $(DEL) $(DOC) + if exist $(DOC) del $(DOC) set EMACSBOOTSTRAPLOADPATH=$(LISP);$(PACKAGE_PATH) set EMACSBOOTSTRAPMODULEPATH=$(MODULES) $(TEMACS_BATCH) -l $(TEMACS_DIR)\..\lisp\make-docfile.el -- -o $(DOC) -i $(XEMACS)\site-packages