aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Innes1999-01-17 19:12:04 +0000
committerAndrew Innes1999-01-17 19:12:04 +0000
commit32c0fe80992b6e8903e8643d5b352fd92f4366f1 (patch)
treee4aa93e729177cc0368e3cc08b0c4d4a61858984
parent6012853d9c066c5e6a5a8b55b78a2b3ea5def5ab (diff)
downloademacs-32c0fe80992b6e8903e8643d5b352fd92f4366f1.tar.gz
emacs-32c0fe80992b6e8903e8643d5b352fd92f4366f1.zip
(ALL): List top-level targets.
(addsection): New top-level target. (install): Copy fns-*.el to bin directory.
-rw-r--r--nt/makefile.nt9
1 files changed, 8 insertions, 1 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt
index ed8bfe6628f..06726541048 100644
--- a/nt/makefile.nt
+++ b/nt/makefile.nt
@@ -22,7 +22,7 @@
22# 9-6-94 22# 9-6-94
23!include makefile.def 23!include makefile.def
24 24
25ALL = $(BLD)\addpm.exe $(BLD)\ddeclient.exe $(BLD)\runemacs.exe $(BLD)\cmdproxy.exe 25ALL = addpm ddeclient runemacs cmdproxy addsection
26!if $(MSVCNT11) 26!if $(MSVCNT11)
27TRES = $(BLD)\emacs.res 27TRES = $(BLD)\emacs.res
28!else 28!else
@@ -55,6 +55,12 @@ $(BLD)\cmdproxy.exe: $(BLD)\cmdproxy.obj
55 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \ 55 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
56 $(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib 56 $(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib
57 57
58addsection: $(BLD) $(BLD)\addsection.exe
59$(BLD)\addsection.obj: addsection.c
60$(BLD)\addsection.exe: $(BLD)\addsection.obj
61 $(LINK) -debug:full -out:$@ -subsystem:console -entry:mainCRTStartup \
62 $(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib
63
58# 64#
59# The resource file. NT 3.10 requires the use of cvtres; even though 65# The resource file. NT 3.10 requires the use of cvtres; even though
60# it is not necessary on later versions, it is still ok to use it. 66# it is not necessary on later versions, it is still ok to use it.
@@ -124,6 +130,7 @@ install: all batch_files
124 - $(CP) $(BLD)\ddeclient.exe $(INSTALL_DIR)\bin 130 - $(CP) $(BLD)\ddeclient.exe $(INSTALL_DIR)\bin
125 - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin 131 - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin
126 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin 132 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
133 - $(CP) ..\lib-src\fns-*.el $(INSTALL_DIR)\bin
127 - $(ADDPM) $(INSTALL_DIR) 134 - $(ADDPM) $(INSTALL_DIR)
128 - $(DEL) ..\same-dir.tst 135 - $(DEL) ..\same-dir.tst
129 - $(DEL) $(INSTALL_DIR)\same-dir.tst 136 - $(DEL) $(INSTALL_DIR)\same-dir.tst