Mercurial > hg > xemacs-beta
comparison Makefile.in @ 267:966663fcf606 r20-5b32
Import from CVS: tag r20-5b32
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:26:29 +0200 |
parents | 405dd6d1825b |
children | b2472a1930f2 |
comparison
equal
deleted
inserted
replaced
266:18d185df8c54 | 267:966663fcf606 |
---|---|
150 | 150 |
151 ## This is set to 'yes' if the user specified the --lispdir or | 151 ## This is set to 'yes' if the user specified the --lispdir or |
152 ## --datadir flag at configuration time. | 152 ## --datadir flag at configuration time. |
153 lispdir_user_defined=@lispdir_user_defined@ | 153 lispdir_user_defined=@lispdir_user_defined@ |
154 | 154 |
155 ## Directories XEmacs should search for lisp files specific | 155 ## Where packages are found. |
156 packagepath=@packagepath@ | |
157 | |
158 ## This is set to 'yes' if the user specified the --package_path | |
159 ## at configuration time. | |
160 packagepath_user_defined=@packagepath_user_defined@ | |
161 | |
162 | |
163 ## Directory XEmacs should search for lisp files specific | |
156 ## to this site (i.e. customizations), before consulting | 164 ## to this site (i.e. customizations), before consulting |
157 ## ${lispdir}. This should be a colon-separated list of | 165 ## ${lispdir}. |
158 ## directories. | |
159 sitelispdir=@sitelispdir@ | 166 sitelispdir=@sitelispdir@ |
160 | 167 |
161 ## Where XEmacs will search for its lisp files while | 168 ## Where XEmacs will search for its lisp files while |
162 ## building. This is only used during the process of | 169 ## building. This is only used during the process of |
163 ## compiling XEmacs, to help XEmacs find its lisp files | 170 ## compiling XEmacs, to help XEmacs find its lisp files |
301 @-chmod 0644 src/paths.h.tmp | 308 @-chmod 0644 src/paths.h.tmp |
302 @(echo '#define PATH_PREFIX "${prefix}"'; \ | 309 @(echo '#define PATH_PREFIX "${prefix}"'; \ |
303 if test "${lispdir_user_defined}" = "yes"; \ | 310 if test "${lispdir_user_defined}" = "yes"; \ |
304 then echo '#define PATH_LOADSEARCH "${lispdir}"'; \ | 311 then echo '#define PATH_LOADSEARCH "${lispdir}"'; \ |
305 else echo '/* #define PATH_LOADSEARCH "${lispdir}" */'; \ | 312 else echo '/* #define PATH_LOADSEARCH "${lispdir}" */'; \ |
313 fi; \ | |
314 if test "${packagepath_user_defined}" = "yes"; \ | |
315 then echo '#define PATH_PACKAGEPATH "${packagepath}"'; \ | |
316 else echo '/* #define PATH_PACKAGEPATH "${packagepath}" */'; \ | |
317 fi; \ | |
318 if test "${sitelispdir_user_defined}" = "yes"; \ | |
319 then echo '#define PATH_SITE "${sitelispdir}"'; \ | |
320 else echo '/* #define PATH_SITE "${sitelispdir}" */'; \ | |
306 fi; \ | 321 fi; \ |
307 if test "${archlibdir_user_defined}" = "yes"; \ | 322 if test "${archlibdir_user_defined}" = "yes"; \ |
308 then echo '#define PATH_EXEC "${archlibdir}"'; \ | 323 then echo '#define PATH_EXEC "${archlibdir}"'; \ |
309 else echo '/* #define PATH_EXEC "${archlibdir}" */'; \ | 324 else echo '/* #define PATH_EXEC "${archlibdir}" */'; \ |
310 fi; \ | 325 fi; \ |
569 $(RM) config.status config.log config-tmp-* build-install Installation ; \ | 584 $(RM) config.status config.log config-tmp-* build-install Installation ; \ |
570 for d in src lib-src lwlib dynodump ; do \ | 585 for d in src lib-src lwlib dynodump ; do \ |
571 $(RM) $$d/Makefile $$d/Makefile.in ; \ | 586 $(RM) $$d/Makefile $$d/Makefile.in ; \ |
572 done ; \ | 587 done ; \ |
573 $(RM) core .sbinit Makefile lock/*; \ | 588 $(RM) core .sbinit Makefile lock/*; \ |
574 $(RM) lisp/finder-inf.el* Installation.el Installation.elc | 589 $(RM) lisp/finder-inf.el* Installation.el Installation.elc; \ |
590 $(RM) packages mule-packages | |
575 | 591 |
576 distclean: FRC.distclean | 592 distclean: FRC.distclean |
577 for d in $(SUBDIR); do (cd $$d && $(RECURSIVE_MAKE) $@); done | 593 for d in $(SUBDIR); do (cd $$d && $(RECURSIVE_MAKE) $@); done |
578 -${top_distclean} | 594 -${top_distclean} |
579 | 595 |