diff options
| author | Eli Zaretskii | 2013-04-01 16:18:20 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-04-01 16:18:20 +0300 |
| commit | 095bf25383aab763b09bc4df4593632d51e37ec6 (patch) | |
| tree | 63a16a4ff09d582ed5eda0d277eb985b39fb4bfd /lib-src | |
| parent | a74b0e1bdf0f2f49bce82dd7e15264c5c548d980 (diff) | |
| download | emacs-095bf25383aab763b09bc4df4593632d51e37ec6.tar.gz emacs-095bf25383aab763b09bc4df4593632d51e37ec6.zip | |
Added nt/Makefile.in and appropriate tweaks to configure.ac.
Added emacsclient.res support to lib-src/.
Fixed temacs and dumping commands in src/Makefile.in.
Miscellaneous fixes all over the place.
Not tried to build yet.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 5e40c2555cf..c7bfc207608 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -172,6 +172,8 @@ LIBS_MOVE = $(LIBS_MAIL) $(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) \ | |||
| 172 | 172 | ||
| 173 | ## Extra object files for linking emacsclient | 173 | ## Extra object files for linking emacsclient |
| 174 | NTLIB = @NTLIB@ | 174 | NTLIB = @NTLIB@ |
| 175 | CLIENTRES = @CLIENTRES@ | ||
| 176 | WINDRES = @WINDRES@ | ||
| 175 | 177 | ||
| 176 | ## Some systems define this to request special libraries. | 178 | ## Some systems define this to request special libraries. |
| 177 | LIBS_SYSTEM = @LIBS_SYSTEM@ | 179 | LIBS_SYSTEM = @LIBS_SYSTEM@ |
| @@ -339,9 +341,9 @@ movemail${EXEEXT}: ${srcdir}/movemail.c pop.o $(NTLIB) $(config_h) | |||
| 339 | pop.o: ${srcdir}/pop.c ${srcdir}/../lib/min-max.h $(config_h) | 341 | pop.o: ${srcdir}/pop.c ${srcdir}/../lib/min-max.h $(config_h) |
| 340 | $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c | 342 | $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c |
| 341 | 343 | ||
| 342 | emacsclient${EXEEXT}: ${srcdir}/emacsclient.c $(NTLIB) $(config_h) | 344 | emacsclient${EXEEXT}: ${srcdir}/emacsclient.c $(NTLIB) $(CLIENTRES) $(config_h) |
| 343 | $(CC) ${ALL_CFLAGS} ${srcdir}/emacsclient.c \ | 345 | $(CC) ${ALL_CFLAGS} ${srcdir}/emacsclient.c \ |
| 344 | -DVERSION="\"${version}\"" $(LIB_WSOCK32) \ | 346 | -DVERSION="\"${version}\"" $(CLIENTRES) $(LIB_WSOCK32) \ |
| 345 | $(LOADLIBES) $(LIB_FDATASYNC) -o emacsclient${EXEEXT} | 347 | $(LOADLIBES) $(LIB_FDATASYNC) -o emacsclient${EXEEXT} |
| 346 | 348 | ||
| 347 | ntlib.o: ${srcdir}/ntlib.c ${srcdir}/ntlib.h | 349 | ntlib.o: ${srcdir}/ntlib.c ${srcdir}/ntlib.h |
| @@ -355,4 +357,7 @@ update-game-score${EXEEXT}: ${srcdir}/update-game-score.c $(NTLIB) $(config_h) | |||
| 355 | ${srcdir}/update-game-score.c $(NTLIB) $(LOADLIBES) \ | 357 | ${srcdir}/update-game-score.c $(NTLIB) $(LOADLIBES) \ |
| 356 | -o update-game-score${EXEEXT} | 358 | -o update-game-score${EXEEXT} |
| 357 | 359 | ||
| 360 | emacsclient.res: ${srcdir}/nt/emacsclient.rc | ||
| 361 | $(WINDRES) -O coff --include-dir=${srcdir}/nt -o emacscient.res | ||
| 362 | |||
| 358 | ## Makefile ends here. | 363 | ## Makefile ends here. |