# HG changeset patch # User Andrew Innes # Date 919543132 0 # Node ID 2744e722a739e2b784c6dfedaa0c21b3953d3345 # Parent 69b9caa187b0a9e093eaf48781cf25d7d76c916a (preprep): New target. (ALL): Build it. diff -r 69b9caa187b0 -r 2744e722a739 nt/makefile.nt --- 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.