summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2011-05-23 20:43:17 -0700
committerGlenn Morris <rgm@gnu.org>2011-05-23 20:43:17 -0700
commit1c728a9d3c737cf0ed0344398363c6dd0769bc4f (patch)
tree3297e9b30813701a5dfb4a00c31f6ee2275bbb85 /lib-src
parentfa5d79db2ce8541a7b7342d48146a5ae6cbfdcc8 (diff)
downloademacs-1c728a9d3c737cf0ed0344398363c6dd0769bc4f.tar.gz
* 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 @@
+2011-05-24 Glenn Morris <rgm@gnu.org>
+
+ * Makefile.in (update-game-score${EXEEXT}): Use a single rule.
+
2011-05-19 Glenn Morris <rgm@gnu.org>
* 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
hexl${EXEEXT}: ${srcdir}/hexl.c ../src/config.h
$(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
-update-game-score${EXEEXT}: update-game-score.o
- $(CC) ${LINK_CFLAGS} update-game-score.o \
- $(LOADLIBES) -o update-game-score
-
-update-game-score.o: ${srcdir}/update-game-score.c ../src/config.h
- $(CC) -c ${CPP_CFLAGS} ${srcdir}/update-game-score.c \
- -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\""
+update-game-score${EXEEXT}: ${srcdir}/update-game-score.c ../src/config.h
+ $(CC) ${ALL_CFLAGS} -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\"" \
+ ${srcdir}/update-game-score.c $(LOADLIBES) -o update-game-score
## Makefile ends here.