diff options
author | David J. MacKenzie <djm@gnu.org> | 1994-10-12 23:28:43 +0000 |
---|---|---|
committer | David J. MacKenzie <djm@gnu.org> | 1994-10-12 23:28:43 +0000 |
commit | 2d521ee66bdf5e34ef71a0bfa33d0f98a1896622 (patch) | |
tree | a66533ea9bbef628c238929c43d2ceb65101c08b /lib-src/Makefile.in | |
parent | a4af9799a8452c21b306415ba0f1f6fca5839438 (diff) | |
download | emacs-2d521ee66bdf5e34ef71a0bfa33d0f98a1896622.tar.gz |
remove make-path
Diffstat (limited to 'lib-src/Makefile.in')
-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@ srcdir=@srcdir@ VPATH=@srcdir@ +# The top-level source directory, also set by configure. +top_srcdir=@top_srcdir@ + # ==================== Emacs-specific directories ==================== # These variables hold the values Emacs will actually use. They are @@ -92,7 +95,7 @@ INSTALLABLE_SCRIPTS = rcs-checkin UTILITIES= wakeup profile digest-doc \ sorted-doc movemail cvtmail fakemail yow emacsserver hexl timer -DONT_INSTALL= test-distrib make-docfile make-path +DONT_INSTALL= test-distrib make-docfile # Like UTILITIES, but they're not system-dependent, and should not be # deleted by the distclean target. @@ -220,7 +223,7 @@ maybe-blessmail: BLESSMAIL ${archlibdir}: all @echo @echo "Installing utilities run internally by Emacs." - ./make-path ${archlibdir} + $(top_srcdir)/mkinstalldirs ${archlibdir} if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \ for file in ${UTILITIES}; do \ (cd ..; $(INSTALL_PROGRAM) lib-src/$$file ${archlibdir}/$$file) ; \ @@ -361,9 +364,6 @@ timer.o: ${srcdir}/timer.c ../src/config.h timer: ${TIMEROBJS} $(CC) $(LINK_CFLAGS) ${TIMEROBJS} $(LOADLIBES) -o timer -make-path: ${srcdir}/make-path.c ../src/config.h - $(CC) $(ALL_CFLAGS) ${srcdir}/make-path.c -o make-path - /* These are NOT included in INSTALLABLES or UTILITIES. See ../src/Makefile.in.in. */ emacstool: ${srcdir}/emacstool.c |