diff options
| author | Eli Zaretskii | 2010-10-01 13:45:16 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2010-10-01 13:45:16 +0200 |
| commit | 73077a9af5b634a43742c3fdcecae8a851eb51be (patch) | |
| tree | c62d3a7c20cbd132eac4642e7872a93c73b845f9 /lib-src | |
| parent | 967f57dcc822719de3a0e197957943f7504baef1 (diff) | |
| download | emacs-73077a9af5b634a43742c3fdcecae8a851eb51be.tar.gz emacs-73077a9af5b634a43742c3fdcecae8a851eb51be.zip | |
Support TAGS targets in the w32 build.
nt/makefile.w32-in (frc, TAGS, TAGS-gmake, TAGS-nmake): New targets.
emacs-src.tags: New file.
src/makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
(TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
(nt-TAGS-gmake, nt-TAGS-nmake): New targets.
lisp/makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
(TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
(TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
lib-src/makefile.w32-in (tags, TAGS): New targets.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 4 | ||||
| -rw-r--r-- | lib-src/makefile.w32-in | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 33036c92ffd..3d8a0222296 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-10-01 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * makefile.w32-in (tags, TAGS): New targets. | ||
| 4 | |||
| 1 | 2010-09-30 Juanma Barranquero <lekktu@gmail.com> | 5 | 2010-09-30 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * emacsclient.c (get_server_config): Don't read Emacs pid from | 7 | * emacsclient.c (get_server_config): Don't read Emacs pid from |
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index 552dd1349fc..6d881dbc174 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in | |||
| @@ -378,6 +378,12 @@ cleanall: clean | |||
| 378 | getopt.h: getopt_.h | 378 | getopt.h: getopt_.h |
| 379 | $(CP) $(ALL_DEPS) $@ | 379 | $(CP) $(ALL_DEPS) $@ |
| 380 | 380 | ||
| 381 | ### TAGS ### | ||
| 382 | |||
| 383 | tags: TAGS | ||
| 384 | TAGS: $(BLD)/etags.exe *.c *.h | ||
| 385 | $(BLD)/etags.exe *.c *.h | ||
| 386 | |||
| 381 | ### DEPENDENCIES ### | 387 | ### DEPENDENCIES ### |
| 382 | 388 | ||
| 383 | EMACS_ROOT = .. | 389 | EMACS_ROOT = .. |