X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b14391d1c8fde767eabedd2243dd6583f685f53f..2ec6905c69c73f908533697c770c690657f4371c:/src/makeprog.vc diff --git a/src/makeprog.vc b/src/makeprog.vc index a2f9cd52dc..f33a3f4ad1 100644 --- a/src/makeprog.vc +++ b/src/makeprog.vc @@ -17,6 +17,10 @@ WXUSINGDLL=0 !include $(WXDIR)\src\makevc.env +!if "$(RM)" == "" +RM= erase +!endif + all: $(PROGRAM).exe wx: @@ -29,21 +33,41 @@ wxclean: nmake -f makefile.vc clean # cd $(THISDIR) -$(PROGRAM).exe: $(DUMMYOBJ) $(WXLIB) $(OBJECTS) $(PROGRAM).res + +!if "$(wxUSE_GUI)" == "" +wxUSE_GUI=1 +!endif + +!if "$(wxUSE_GUI)" == "1" + +$(PROGRAM).exe: $(WXLIB) $(OBJECTS) $(PROGRAM).res $(link) @<< -out:$(PROGRAM).exe $(LINKFLAGS) -$(DUMMYOBJ) $(OBJECTS) $(PROGRAM).res +$(OBJECTS) $(DUMMYOBJ) $(PROGRAM).res $(LIBS) << $(PROGRAM).res : $(PROGRAM).rc $(WXDIR)\include\wx\msw\wx.rc $(rc) -r /i$(WXDIR)\include /i$(WXDIR)\contrib\include -fo$@ $(PROGRAM).rc +!else + +$(PROGRAM).exe: $(WXLIB) $(OBJECTS) + $(link) @<< +-out:$(PROGRAM).exe +$(LINKFLAGS) +$(OBJECTS) $(DUMMYOBJ) +$(LIBS) +<< + +!endif + + clean: - -erase $(OBJECTS) - -erase *.exe - -erase *.res - -erase *.map - -erase *.sbr - -erase *.pdb + -$(RM) $(OBJECTS) + -$(RM) *.exe + -$(RM) *.res + -$(RM) *.map + -$(RM) *.sbr + -$(RM) *.pdb