]> git.eshelyaron.com Git - emacs.git/commitdiff
* lib-src/Makefile.in (update-game-score${EXEEXT}): Use a single rule.
authorGlenn Morris <rgm@gnu.org>
Tue, 24 May 2011 03:43:17 +0000 (20:43 -0700)
committerGlenn Morris <rgm@gnu.org>
Tue, 24 May 2011 03:43:17 +0000 (20:43 -0700)
lib-src/ChangeLog
lib-src/Makefile.in

index 33778c1f0aee7a42169cb4fd6f931c5bab358f42..13231f2c8db23ed74c827741cb85947341019e70 100644 (file)
@@ -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.
index 1c2018dbbc92fe8ccd320ef4ba44add5b46df765..24d89606195689cc75a25b65a7129bae55a3a8e2 100644 (file)
@@ -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.