aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorKaroly Lorentey2005-09-17 19:10:55 +0000
committerKaroly Lorentey2005-09-17 19:10:55 +0000
commit5826661f18ae8c95b26951a042692e68b9bc093f (patch)
tree534dee8bd5250e83e84a896ebd29f82be3370c07 /lib-src
parent567c887847144d9609ccfe550fd7ef178120297a (diff)
parent5b51c03716d7c487d1c2336df2a76a6417a2343c (diff)
downloademacs-5826661f18ae8c95b26951a042692e68b9bc093f.tar.gz
emacs-5826661f18ae8c95b26951a042692e68b9bc093f.zip
Merged from miles@gnu.org--gnu-2005 (patch 116-117, 544-550)
Patches applied: * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-544 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-545 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-546 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-547 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-548 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-549 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-550 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-116 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-117 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-421
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog6
-rw-r--r--lib-src/Makefile.in8
2 files changed, 11 insertions, 3 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 4cf0da4b644..76e56e77e16 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,9 @@
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
12005-09-11 Jason Rumney <jasonr@gnu.org> 72005-09-11 Jason Rumney <jasonr@gnu.org>
2 8
3 * makefile.w32-in (../src/config.h): Don't overwrite. Print a 9 * makefile.w32-in (../src/config.h): Don't overwrite. Print a
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. */