Mercurial > hg > xemacs-beta
comparison Makefile.in.in @ 420:41dbb7a9d5f2 r21-2-18
Import from CVS: tag r21-2-18
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:24:09 +0200 |
parents | 697ef44129c6 |
children | 95016f13131a |
comparison
equal
deleted
inserted
replaced
419:66615b78f1a5 | 420:41dbb7a9d5f2 |
---|---|
188 | 188 |
189 ## Where to create and expect the locking directory, where | 189 ## Where to create and expect the locking directory, where |
190 ## the XEmacs locking code keeps track of which files are | 190 ## the XEmacs locking code keeps track of which files are |
191 ## currently being edited. | 191 ## currently being edited. |
192 lockdir=@lockdir@ | 192 lockdir=@lockdir@ |
193 | |
194 # Where to put the DOC file. | |
195 docdir=@docdir@ | |
193 | 196 |
194 ## Where to put executables to be run by XEmacs rather than | 197 ## Where to put executables to be run by XEmacs rather than |
195 ## the user. This path usually includes the XEmacs version | 198 ## the user. This path usually includes the XEmacs version |
196 ## and configuration name, so that multiple configurations | 199 ## and configuration name, so that multiple configurations |
197 ## for multiple versions of XEmacs may be installed at | 200 ## for multiple versions of XEmacs may be installed at |
391 if test "`(cd ${archlibdir} && $(pwd))`" != \ | 394 if test "`(cd ${archlibdir} && $(pwd))`" != \ |
392 "`(cd ./lib-src && $(pwd))`"; then \ | 395 "`(cd ./lib-src && $(pwd))`"; then \ |
393 if test -f ../Installation; then \ | 396 if test -f ../Installation; then \ |
394 ${INSTALL_DATA} ../Installation ${archlibdir}/Installation; \ | 397 ${INSTALL_DATA} ../Installation ${archlibdir}/Installation; \ |
395 fi; \ | 398 fi; \ |
396 for f in DOC config.values; do \ | 399 ${INSTALL_DATA} lib-src/config.values ${archlibdir}/config.values; \ |
397 ${INSTALL_DATA} lib-src/$${f} ${archlibdir}/$${f}; \ | 400 ${INSTALL_DATA} lib-src/DOC ${docdir}/DOC; \ |
398 done ; \ | |
399 for subdir in `find ${archlibdir} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; \ | 401 for subdir in `find ${archlibdir} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; \ |
400 do (cd $${subdir} && $(RM) -r RCS CVS SCCS \#* *~) ; done ; \ | 402 do (cd $${subdir} && $(RM) -r RCS CVS SCCS \#* *~) ; done ; \ |
401 else true; fi | 403 else true; fi |
402 ${INSTALL_PROGRAM} src/${PROGNAME} ${bindir}/${PROGNAME}-${version} | 404 ${INSTALL_PROGRAM} src/${PROGNAME} ${bindir}/${PROGNAME}-${version} |
403 -chmod 0755 ${bindir}/${PROGNAME}-${version} | 405 -chmod 0755 ${bindir}/${PROGNAME}-${version} |
469 ## Build all the directories to install XEmacs in. | 471 ## Build all the directories to install XEmacs in. |
470 ## Since we may be creating several layers of directories, | 472 ## Since we may be creating several layers of directories, |
471 ## (e.g. /usr/local/lib/${PROGNAME}-20.5/sparc-sun-solaris2.6), we use | 473 ## (e.g. /usr/local/lib/${PROGNAME}-20.5/sparc-sun-solaris2.6), we use |
472 ## make-path instead of mkdir. Not all mkdirs have the `-p' flag. | 474 ## make-path instead of mkdir. Not all mkdirs have the `-p' flag. |
473 mkdir: FRC.mkdir | 475 mkdir: FRC.mkdir |
474 ${MAKEPATH} ${COPYDESTS} ${lockdir} ${infodir} ${archlibdir} \ | 476 ${MAKEPATH} ${COPYDESTS} ${lockdir} ${docdir} ${infodir} ${archlibdir} \ |
475 ${mandir} ${bindir} ${datadir} ${libdir} ${pkgdir} \ | 477 ${mandir} ${bindir} ${datadir} ${libdir} ${pkgdir} \ |
476 ${sitelispdir} ${moduledir} ${sitemoduledir} | 478 ${sitelispdir} ${moduledir} ${sitemoduledir} |
477 -chmod 0777 ${lockdir} | 479 -chmod 0777 ${lockdir} |
478 | 480 |
479 ## Delete all the installed files that the `install' target would | 481 ## Delete all the installed files that the `install' target would |