[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lib-src/Makefile.in
From: |
Colin Walters |
Subject: |
[Emacs-diffs] Changes to emacs/lib-src/Makefile.in |
Date: |
Wed, 10 Apr 2002 15:05:44 -0400 |
Index: emacs/lib-src/Makefile.in
diff -c emacs/lib-src/Makefile.in:1.123 emacs/lib-src/Makefile.in:1.124
*** emacs/lib-src/Makefile.in:1.123 Tue Dec 11 17:55:45 2001
--- emacs/lib-src/Makefile.in Wed Apr 10 15:05:44 2002
***************
*** 82,87 ****
--- 82,90 ----
# to `../configure'.
address@hidden@
+ address@hidden@
+ address@hidden@
+
# ==================== Utility Programs for the Build =================
# ../configure figures out the correct values for these.
***************
*** 100,107 ****
# Things that Emacs runs internally, or during the build process,
# which should not be installed in bindir.
! UTILITIES= profile digest-doc \
! sorted-doc movemail cvtmail fakemail yow emacsserver hexl
DONT_INSTALL= test-distrib make-docfile
--- 103,110 ----
# Things that Emacs runs internally, or during the build process,
# which should not be installed in bindir.
! UTILITIES= profile digest-doc sorted-doc movemail cvtmail fakemail \
! yow emacsserver hexl update-game-score
DONT_INSTALL= test-distrib make-docfile
***************
*** 288,293 ****
--- 291,307 ----
$(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file ${archlibdir}/$$file ; \
done ; \
fi
+ #ifdef HAVE_SHARED_GAME_DIR
+ chown ${gameuser} ${archlibdir}/update-game-score
+ chmod u+s ${archlibdir}/update-game-score
+ $(top_srcdir)/mkinstalldirs ${gamedir}
+ chown ${gameuser} ${gamedir}
+ chmod u=rwx,g=rwx,o=rx ${gamedir}
+ /* If you change these, be sure to change the variables in
+ lisp/play/{tetris,snake}.el. */
+ touch ${gamedir}/snake-scores
+ touch ${gamedir}/tetris-scores
+ #endif
if [ `(cd ${archlibdir} && /bin/pwd)` \
!= `(cd ${srcdir} && /bin/pwd)` ]; then \
for file in ${SCRIPTS}; do \
***************
*** 429,434 ****
--- 443,451 ----
hexl: ${srcdir}/hexl.c ../src/config.h
$(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
+
+ update-game-score: ${srcdir}/update-game-score.c ../src/config.h
+ $(CC) ${ALL_CFLAGS} ${srcdir}/update-game-score.c $(LOADLIBES) -o
update-game-score
/* These are NOT included in INSTALLABLES or UTILITIES.
See ../src/Makefile.in. */
- [Emacs-diffs] Changes to emacs/lib-src/Makefile.in,
Colin Walters <=