diff options
| author | Gerd Moellmann | 2000-04-09 10:53:05 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-04-09 10:53:05 +0000 |
| commit | adb0a8d33379287659d521d77390c18ebaa76889 (patch) | |
| tree | 12302fcdb6ed209a8b0096559a346a94f1854c4d /lib-src | |
| parent | a8c21b482ffc1ce36f861cb8be0712bb4ffe8314 (diff) | |
| download | emacs-adb0a8d33379287659d521d77390c18ebaa76889.tar.gz emacs-adb0a8d33379287659d521d77390c18ebaa76889.zip | |
(INSTALLABLES): Add ebrowse.
(ebrowse): New target.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 99db78a4d5c..ccb7cb928e7 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -92,7 +92,7 @@ INSTALL_STRIP = | |||
| 92 | 92 | ||
| 93 | # Things that a user might actually run, | 93 | # Things that a user might actually run, |
| 94 | # which should be installed in bindir. | 94 | # which should be installed in bindir. |
| 95 | INSTALLABLES = etags ctags emacsclient b2m | 95 | INSTALLABLES = etags ctags emacsclient b2m ebrowse |
| 96 | INSTALLABLE_SCRIPTS = rcs-checkin grep-changelog | 96 | INSTALLABLE_SCRIPTS = rcs-checkin grep-changelog |
| 97 | 97 | ||
| 98 | # Things that Emacs runs internally, or during the build process, | 98 | # Things that Emacs runs internally, or during the build process, |
| @@ -362,6 +362,9 @@ regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h ../src/config.h | |||
| 362 | etags: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h | 362 | etags: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h |
| 363 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags | 363 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags |
| 364 | 364 | ||
| 365 | ebrowse: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h | ||
| 366 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/ebrowse.c $(GETOPTOBJS) $(LOADLIBES) -o ebrowse | ||
| 367 | |||
| 365 | /* We depend on etags to assure that parallel makes don't write two | 368 | /* We depend on etags to assure that parallel makes don't write two |
| 366 | etags.o files on top of each other. */ | 369 | etags.o files on top of each other. */ |
| 367 | ctags: etags | 370 | ctags: etags |