Mercurial > hg > xemacs-beta
comparison nt/xemacs.mak @ 357:4711e16a8e49 r21-1-8
Import from CVS: tag r21-1-8
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:57:04 +0200 |
parents | 182f72e8cd0d |
children | 8e84bee8ddd0 |
comparison
equal
deleted
inserted
replaced
356:e85f639a32f3 | 357:4711e16a8e49 |
---|---|
1172 | 1172 |
1173 #------------------------------------------------------------------------------ | 1173 #------------------------------------------------------------------------------ |
1174 | 1174 |
1175 # use this rule to build the complete system | 1175 # use this rule to build the complete system |
1176 all: $(OUTDIR)\nul $(LASTFILE) $(LWLIB) $(LIB_SRC_TOOLS) $(RUNEMACS) \ | 1176 all: $(OUTDIR)\nul $(LASTFILE) $(LWLIB) $(LIB_SRC_TOOLS) $(RUNEMACS) \ |
1177 $(TEMACS) $(TEMACS_BROWSE) update-elc $(DOC) dump-xemacs info | 1177 $(TEMACS) $(TEMACS_BROWSE) update-elc $(DOC) dump-xemacs \ |
1178 $(LISP)/auto-autoloads.el $(LISP)/custom-load.el \ | |
1179 info | |
1178 | 1180 |
1179 temacs: $(TEMACS) | 1181 temacs: $(TEMACS) |
1180 | 1182 |
1181 # use this rule to install the system | 1183 # use this rule to install the system |
1182 install: all | 1184 install: all |
1237 del *.info* $(MANDIR)\internals\index.texi $(MANDIR)\lispref\index.texi | 1239 del *.info* $(MANDIR)\internals\index.texi $(MANDIR)\lispref\index.texi |
1238 | 1240 |
1239 depend: | 1241 depend: |
1240 mkdepend -f xemacs.mak -p$(OUTDIR)\ -o.obj -w9999 -- $(TEMACS_CPP_FLAGS) -- $(DOC_SRC1) $(DOC_SRC2) $(DOC_SRC3) $(DOC_SRC4) $(DOC_SRC5) $(DOC_SRC6) $(DOC_SRC7) $(DOC_SRC8) $(DOC_SRC9) $(LASTFILE_SRC)\lastfile.c $(LIB_SRC)\make-docfile.c .\runemacs.c | 1242 mkdepend -f xemacs.mak -p$(OUTDIR)\ -o.obj -w9999 -- $(TEMACS_CPP_FLAGS) -- $(DOC_SRC1) $(DOC_SRC2) $(DOC_SRC3) $(DOC_SRC4) $(DOC_SRC5) $(DOC_SRC6) $(DOC_SRC7) $(DOC_SRC8) $(DOC_SRC9) $(LASTFILE_SRC)\lastfile.c $(LIB_SRC)\make-docfile.c .\runemacs.c |
1241 | 1243 |
1244 # Update auto-autoloads.el and custom-load.el similar to what | |
1245 # XEmacs.rules does for xemacs-packages. | |
1246 VANILLA=-vanilla | |
1247 FORCE: | |
1248 $(LISP)\auto-autoloads.el: FORCE | |
1249 $(PROGNAME) $(VANILLA) -batch \ | |
1250 -l autoload -f batch-update-directory $(LISP) | |
1251 $(PROGNAME) $(VANILLA) -batch \ | |
1252 -f batch-byte-compile $@ | |
1253 @del $(LISP)\auto-autoloads.el~ | |
1254 | |
1255 $(LISP)\custom-load.el: FORCE | |
1256 $(PROGNAME) $(VANILLA) -batch -l cus-dep \ | |
1257 -f Custom-make-dependencies $(LISP) | |
1258 | |
1242 # DO NOT DELETE THIS LINE -- make depend depends on it. | 1259 # DO NOT DELETE THIS LINE -- make depend depends on it. |
1243 | 1260 |