diff options
| author | Richard M. Stallman | 1994-02-05 04:58:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-02-05 04:58:38 +0000 |
| commit | 379fb9c8bba290a17b5258be2dd02fcc900d4860 (patch) | |
| tree | cdd49652c00f41ac26c86a51578cd6993149722c /lib-src | |
| parent | de9e28289a9c640ba36381290075515090e2e151 (diff) | |
| download | emacs-379fb9c8bba290a17b5258be2dd02fcc900d4860.tar.gz emacs-379fb9c8bba290a17b5258be2dd02fcc900d4860.zip | |
(profile): New target.
(UTILITIES): Mention profile.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index e48ff1c36ad..5d13750673a 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -81,8 +81,8 @@ INSTALLABLE_SCRIPTS = rcs-checkin | |||
| 81 | 81 | ||
| 82 | # Things that Emacs runs internally, or during the build process, | 82 | # Things that Emacs runs internally, or during the build process, |
| 83 | # which should not be installed in bindir. | 83 | # which should not be installed in bindir. |
| 84 | UTILITIES= test-distrib make-path wakeup make-docfile digest-doc sorted-doc \ | 84 | UTILITIES= test-distrib make-path wakeup profile make-docfile digest-doc \ |
| 85 | movemail cvtmail fakemail yow env emacsserver hexl timer | 85 | sorted-doc movemail cvtmail fakemail yow env emacsserver hexl timer |
| 86 | 86 | ||
| 87 | # Like UTILITIES, but they're not system-dependent, and should not be | 87 | # Like UTILITIES, but they're not system-dependent, and should not be |
| 88 | # deleted by the distclean target. | 88 | # deleted by the distclean target. |
| @@ -198,6 +198,9 @@ ctags: ${srcdir}/etags.c $(GETOPTDEPS) etags | |||
| 198 | wakeup: ${srcdir}/wakeup.c | 198 | wakeup: ${srcdir}/wakeup.c |
| 199 | $(CC) ${ALL_CFLAGS} ${srcdir}/wakeup.c $(LOADLIBES) -o wakeup | 199 | $(CC) ${ALL_CFLAGS} ${srcdir}/wakeup.c $(LOADLIBES) -o wakeup |
| 200 | 200 | ||
| 201 | profile: ${srcdir}/profile.c | ||
| 202 | $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile | ||
| 203 | |||
| 201 | make-docfile: ${srcdir}/make-docfile.c | 204 | make-docfile: ${srcdir}/make-docfile.c |
| 202 | $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile | 205 | $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile |
| 203 | 206 | ||