aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorMiles Bader2005-09-19 10:20:33 +0000
committerMiles Bader2005-09-19 10:20:33 +0000
commit6f512f0b53ba23b88c686d27a748797add0a89dc (patch)
tree03b4e8c24f256dc8d90330ab1021d5ac238508d2 /lib-src
parentff8d296438e69b8cf701d95b6ccd271c416c46fd (diff)
parent430d3ed772627a9a23fccdeab2b868c6c41e8365 (diff)
downloademacs-6f512f0b53ba23b88c686d27a748797add0a89dc.tar.gz
emacs-6f512f0b53ba23b88c686d27a748797add0a89dc.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-82
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 542-553) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 116-121) - Merge from emacs--cvs-trunk--0 - Update from CVS
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog12
-rw-r--r--lib-src/Makefile.in8
-rw-r--r--lib-src/makefile.w32-in6
3 files changed, 20 insertions, 6 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 5767b49aaed..76e56e77e16 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,15 @@
12005-09-15 Richard M. Stallman <rms@gnu.org>
2
3 * Makefile.in (update-game-score.o): New target.
4 Compile and link this progranm separately.
5 (update-game-score${EXEEXT}): Use GETOPTDEPTS.
6
72005-09-11 Jason Rumney <jasonr@gnu.org>
8
9 * makefile.w32-in (../src/config.h): Don't overwrite. Print a
10 message instead.
11 (../src/paths.h): Removed.
12
12005-07-27 Juanma Barranquero <lekktu@gmail.com> 132005-07-27 Juanma Barranquero <lekktu@gmail.com>
2 14
3 * .cvsignore: Don't ignore fns-* and fns.el, which are no longer 15 * .cvsignore: Don't ignore fns-* and fns.el, which are no longer
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 274bbabe29f..29fc2ec5374 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -460,10 +460,12 @@ emacsclient${EXEEXT}: ${srcdir}/emacsclient.c ../src/config.h $(GETOPTDEPS)
460hexl${EXEEXT}: ${srcdir}/hexl.c ../src/config.h 460hexl${EXEEXT}: ${srcdir}/hexl.c ../src/config.h
461 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl 461 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
462 462
463update-game-score${EXEEXT}: ${srcdir}/update-game-score.c ../src/config.h 463update-game-score${EXEEXT}: update-game-score.o $(GETOPTDEPS)
464 $(CC) ${ALL_CFLAGS} ${srcdir}/update-game-score.c \ 464 $(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} update-game-score.o $(GETOPTOBJS) $(LOADLIBES) -o update-game-score
465
466update-game-score.o: ${srcdir}/update-game-score.c ../src/config.h $(GETOPT_H)
467 $(CC) -c ${CPP_CFLAGS} ${srcdir}/update-game-score.c \
465 -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\"" \ 468 -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\"" \
466 $(LOADLIBES) -o update-game-score
467 469
468/* These are NOT included in INSTALLABLES or UTILITIES. 470/* These are NOT included in INSTALLABLES or UTILITIES.
469 See ../src/Makefile.in. */ 471 See ../src/Makefile.in. */
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in
index bfda0f25d5f..a1a96098bd8 100644
--- a/lib-src/makefile.w32-in
+++ b/lib-src/makefile.w32-in
@@ -300,9 +300,9 @@ cleanall: clean
300# Headers we would preprocess if we could. 300# Headers we would preprocess if we could.
301# 301#
302../src/config.h: ../nt/$(CONFIG_H) 302../src/config.h: ../nt/$(CONFIG_H)
303 $(CP) $(ALL_DEPS) $@ 303 echo config.h has changed. Re-run configure.bat.
304../src/paths.h: ../nt/paths.h 304 exit -1
305 $(CP) $(ALL_DEPS) $@ 305
306getopt.h: getopt_.h 306getopt.h: getopt_.h
307 $(CP) $(ALL_DEPS) $@ 307 $(CP) $(ALL_DEPS) $@
308 308