wxWidgets/src/makeprog.vc
Julian Smart 9e3cb9eefc Fixed memory leak in textcmn.cpp
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-06-06 11:17:30 +00:00

78 lines
1.3 KiB
Plaintext

#
# File: makefile.nt
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart
#
# Makefile environment for building samples. Include this from
# your own makefile.
# Use FINAL=1 argument to nmake to build final version with no debugging
# info
# Set WXDIR for your system
WXDIR = $(WXWIN)
WXUSINGDLL=0
!include $(WXDIR)\src\makevc.env
!if "$(RM)" == ""
RM= erase
!endif
all: $(PROGRAM).exe
wx:
cd $(WXDIR)\src\msw
nmake -f makefile.vc FINAL=$(FINAL)
# cd $(THISDIR)
wxclean:
cd $(WXDIR)\src\msw
nmake -f makefile.vc clean
# cd $(THISDIR)
!if "$(wxUSE_GUI)" == ""
wxUSE_GUI=1
!endif
!if "$(wxUSE_GUI)" == "1"
#!if "$(WXUSINGDLL)" == "1"
#DUMMYOBJ=
#!endif
$(PROGRAM).exe: $(WXLIB) $(OBJECTS) $(PROGRAM).res
$(link) @<<
-out:$(PROGRAM).exe
$(LINKFLAGS)
$(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:
-$(RM) $(OBJECTS)
-$(RM) *.exe
-$(RM) *.res
-$(RM) *.map
-$(RM) *.sbr
-$(RM) *.pdb