aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorGlenn Morris2011-05-23 20:43:17 -0700
committerGlenn Morris2011-05-23 20:43:17 -0700
commit1c728a9d3c737cf0ed0344398363c6dd0769bc4f (patch)
tree3297e9b30813701a5dfb4a00c31f6ee2275bbb85 /lib-src
parentfa5d79db2ce8541a7b7342d48146a5ae6cbfdcc8 (diff)
downloademacs-1c728a9d3c737cf0ed0344398363c6dd0769bc4f.tar.gz
emacs-1c728a9d3c737cf0ed0344398363c6dd0769bc4f.zip
* lib-src/Makefile.in (update-game-score${EXEEXT}): Use a single rule.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/Makefile.in10
2 files changed, 7 insertions, 7 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 33778c1f0ae..13231f2c8db 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,7 @@
12011-05-24 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (update-game-score${EXEEXT}): Use a single rule.
4
12011-05-19 Glenn Morris <rgm@gnu.org> 52011-05-19 Glenn Morris <rgm@gnu.org>
2 6
3 * makefile.w32-in (echolisp): Remove rule that is no longer needed. 7 * makefile.w32-in (echolisp): Remove rule that is no longer needed.
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 1c2018dbbc9..24d89606195 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -361,12 +361,8 @@ emacsclient${EXEEXT}: ${srcdir}/emacsclient.c ../src/config.h
361hexl${EXEEXT}: ${srcdir}/hexl.c ../src/config.h 361hexl${EXEEXT}: ${srcdir}/hexl.c ../src/config.h
362 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl 362 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
363 363
364update-game-score${EXEEXT}: update-game-score.o 364update-game-score${EXEEXT}: ${srcdir}/update-game-score.c ../src/config.h
365 $(CC) ${LINK_CFLAGS} update-game-score.o \ 365 $(CC) ${ALL_CFLAGS} -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\"" \
366 $(LOADLIBES) -o update-game-score 366 ${srcdir}/update-game-score.c $(LOADLIBES) -o update-game-score
367
368update-game-score.o: ${srcdir}/update-game-score.c ../src/config.h
369 $(CC) -c ${CPP_CFLAGS} ${srcdir}/update-game-score.c \
370 -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\""
371 367
372## Makefile ends here. 368## Makefile ends here.