summaryrefslogtreecommitdiff
path: root/nt
diff options
context:
space:
mode:
authorAndrew Innes <andrewi@gnu.org>1999-02-20 20:38:52 +0000
committerAndrew Innes <andrewi@gnu.org>1999-02-20 20:38:52 +0000
commit1e935838a18faf1fee9e7de4d6178d5d6ba74426 (patch)
treede85f57b57d3434453de454f862cbf896c60d377 /nt
parentebf8a96debedf3d4bf089809009a8f52918dee21 (diff)
downloademacs-1e935838a18faf1fee9e7de4d6178d5d6ba74426.tar.gz
(preprep): New target.
(ALL): Build it.
Diffstat (limited to 'nt')
-rw-r--r--nt/makefile.nt8
1 files changed, 7 insertions, 1 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt
index 3b58dbcf4e2..3205b5f552a 100644
--- a/nt/makefile.nt
+++ b/nt/makefile.nt
@@ -22,7 +22,7 @@
# 9-6-94
!include makefile.def
-ALL = addpm ddeclient runemacs cmdproxy addsection
+ALL = addpm ddeclient runemacs cmdproxy addsection preprep
!if $(MSVCNT11)
TRES = $(BLD)\emacs.res
!else
@@ -61,6 +61,12 @@ $(BLD)\addsection.exe: $(BLD)\addsection.obj
$(LINK) -debug:full -out:$@ -subsystem:console -entry:mainCRTStartup \
$(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib
+preprep: $(BLD) $(BLD)\preprep.exe
+$(BLD)\preprep.obj: preprep.c
+$(BLD)\preprep.exe: $(BLD)\preprep.obj
+ $(LINK) -debug:full -out:$@ -subsystem:console -entry:mainCRTStartup \
+ $(SYS_LDFLAGS) $** $(BASE_LIBS)
+
#
# The resource file. NT 3.10 requires the use of cvtres; even though
# it is not necessary on later versions, it is still ok to use it.