diff options
author | Eli Zaretskii <eliz@gnu.org> | 2014-05-29 22:16:32 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2014-05-29 22:16:32 +0300 |
commit | 7479dd3e8afeac3925c1d5e23d5296623852cff8 (patch) | |
tree | acb4dbfcc21f0b4a852f92ba0a0808a2f5bbf101 /nt/Makefile.in | |
parent | f1b447932d63948a97b21f7d5fbf5230cd6599f4 (diff) | |
download | emacs-7479dd3e8afeac3925c1d5e23d5296623852cff8.tar.gz |
Remove nt/addsection.c and don't build addsection.exe.
configure.ac (ADDSECTION, TEMACS_POST_LINK): Don't compute,
unused.
nt/Makefile.in (DONT_INSTALL): Now empty.
(addsection${EXEEXT}): Remove target.
nt/addsection.c: File removed.
src/Makefile.in (TEMACS_POST_LINK): Remove target.
(emacs$(EXEEXT)): Remove $(ADDSECTION) from prerequisites.
(temacs$(EXEEXT)): Remove $(TEMACS_POST_LINK) from the recipe.
Diffstat (limited to 'nt/Makefile.in')
-rw-r--r-- | nt/Makefile.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nt/Makefile.in b/nt/Makefile.in index f498928bfce..a7fc1101080 100644 --- a/nt/Makefile.in +++ b/nt/Makefile.in @@ -120,7 +120,7 @@ INSTALLABLES = runemacs${EXEEXT} addpm${EXEEXT} UTILITIES = cmdproxy${EXEEXT} ddeclient${EXEEXT} # Things that Emacs runs during the build process. -DONT_INSTALL = addsection${EXEEXT} +DONT_INSTALL = # All files that are created by the linker, i.e., whose names end in ${EXEEXT}. EXE_FILES = ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL} @@ -208,9 +208,6 @@ TAGS: ${EXE_FILES:${EXEEXT}=.c} ../lib-src/etags *.[ch] ## Build the programs -addsection${EXEEXT}: ${srcdir}/addsection.c - $(CC) ${ALL_CFLAGS} ${srcdir}/addsection.c -o addsection${EXEEXT} - addpm${EXEEXT}: ${srcdir}/addpm.c ../src/epaths.h $(CC) ${ALL_CFLAGS} ${srcdir}/addpm.c $(LIBS_ADDPM) -o addpm${EXEEXT} |