diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 12 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 8 | ||||
| -rw-r--r-- | lib-src/makefile.w32-in | 6 |
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 @@ | |||
| 1 | 2005-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 | |||
| 7 | 2005-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 | |||
| 1 | 2005-07-27 Juanma Barranquero <lekktu@gmail.com> | 13 | 2005-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) | |||
| 460 | hexl${EXEEXT}: ${srcdir}/hexl.c ../src/config.h | 460 | hexl${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 | ||
| 463 | update-game-score${EXEEXT}: ${srcdir}/update-game-score.c ../src/config.h | 463 | update-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 | |||
| 466 | update-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 | |
| 306 | getopt.h: getopt_.h | 306 | getopt.h: getopt_.h |
| 307 | $(CP) $(ALL_DEPS) $@ | 307 | $(CP) $(ALL_DEPS) $@ |
| 308 | 308 | ||