changeset 24362:2744e722a739

(preprep): New target. (ALL): Build it.
author Andrew Innes <andrewi@gnu.org>
date Sat, 20 Feb 1999 20:38:52 +0000
parents 69b9caa187b0
children b7ccfe3bfb94
files nt/makefile.nt
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nt/makefile.nt	Sat Feb 20 20:36:26 1999 +0000
+++ b/nt/makefile.nt	Sat Feb 20 20:38:52 1999 +0000
@@ -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 @@
 		  $(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.