diff options
| author | David J. MacKenzie | 1994-10-12 23:28:43 +0000 |
|---|---|---|
| committer | David J. MacKenzie | 1994-10-12 23:28:43 +0000 |
| commit | 2d521ee66bdf5e34ef71a0bfa33d0f98a1896622 (patch) | |
| tree | a66533ea9bbef628c238929c43d2ceb65101c08b /lib-src | |
| parent | a4af9799a8452c21b306415ba0f1f6fca5839438 (diff) | |
| download | emacs-2d521ee66bdf5e34ef71a0bfa33d0f98a1896622.tar.gz emacs-2d521ee66bdf5e34ef71a0bfa33d0f98a1896622.zip | |
remove make-path
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index c244db44714..f121f0aae29 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -61,6 +61,9 @@ libexecdir=@libexecdir@ | |||
| 61 | srcdir=@srcdir@ | 61 | srcdir=@srcdir@ |
| 62 | VPATH=@srcdir@ | 62 | VPATH=@srcdir@ |
| 63 | 63 | ||
| 64 | # The top-level source directory, also set by configure. | ||
| 65 | top_srcdir=@top_srcdir@ | ||
| 66 | |||
| 64 | # ==================== Emacs-specific directories ==================== | 67 | # ==================== Emacs-specific directories ==================== |
| 65 | 68 | ||
| 66 | # These variables hold the values Emacs will actually use. They are | 69 | # These variables hold the values Emacs will actually use. They are |
| @@ -92,7 +95,7 @@ INSTALLABLE_SCRIPTS = rcs-checkin | |||
| 92 | UTILITIES= wakeup profile digest-doc \ | 95 | UTILITIES= wakeup profile digest-doc \ |
| 93 | sorted-doc movemail cvtmail fakemail yow emacsserver hexl timer | 96 | sorted-doc movemail cvtmail fakemail yow emacsserver hexl timer |
| 94 | 97 | ||
| 95 | DONT_INSTALL= test-distrib make-docfile make-path | 98 | DONT_INSTALL= test-distrib make-docfile |
| 96 | 99 | ||
| 97 | # Like UTILITIES, but they're not system-dependent, and should not be | 100 | # Like UTILITIES, but they're not system-dependent, and should not be |
| 98 | # deleted by the distclean target. | 101 | # deleted by the distclean target. |
| @@ -220,7 +223,7 @@ maybe-blessmail: BLESSMAIL | |||
| 220 | ${archlibdir}: all | 223 | ${archlibdir}: all |
| 221 | @echo | 224 | @echo |
| 222 | @echo "Installing utilities run internally by Emacs." | 225 | @echo "Installing utilities run internally by Emacs." |
| 223 | ./make-path ${archlibdir} | 226 | $(top_srcdir)/mkinstalldirs ${archlibdir} |
| 224 | if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \ | 227 | if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \ |
| 225 | for file in ${UTILITIES}; do \ | 228 | for file in ${UTILITIES}; do \ |
| 226 | (cd ..; $(INSTALL_PROGRAM) lib-src/$$file ${archlibdir}/$$file) ; \ | 229 | (cd ..; $(INSTALL_PROGRAM) lib-src/$$file ${archlibdir}/$$file) ; \ |
| @@ -361,9 +364,6 @@ timer.o: ${srcdir}/timer.c ../src/config.h | |||
| 361 | timer: ${TIMEROBJS} | 364 | timer: ${TIMEROBJS} |
| 362 | $(CC) $(LINK_CFLAGS) ${TIMEROBJS} $(LOADLIBES) -o timer | 365 | $(CC) $(LINK_CFLAGS) ${TIMEROBJS} $(LOADLIBES) -o timer |
| 363 | 366 | ||
| 364 | make-path: ${srcdir}/make-path.c ../src/config.h | ||
| 365 | $(CC) $(ALL_CFLAGS) ${srcdir}/make-path.c -o make-path | ||
| 366 | |||
| 367 | /* These are NOT included in INSTALLABLES or UTILITIES. | 367 | /* These are NOT included in INSTALLABLES or UTILITIES. |
| 368 | See ../src/Makefile.in.in. */ | 368 | See ../src/Makefile.in.in. */ |
| 369 | emacstool: ${srcdir}/emacstool.c | 369 | emacstool: ${srcdir}/emacstool.c |