]> git.eshelyaron.com Git - emacs.git/commitdiff
(preprep): New target.
authorAndrew Innes <andrewi@gnu.org>
Sat, 20 Feb 1999 20:38:52 +0000 (20:38 +0000)
committerAndrew Innes <andrewi@gnu.org>
Sat, 20 Feb 1999 20:38:52 +0000 (20:38 +0000)
(ALL): Build it.

nt/makefile.nt

index 3b58dbcf4e2b61f2522f4023f09f8cb4037e756d..3205b5f552a811cc35d8d7188eb49e393964e462 100644 (file)
@@ -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.