# # 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 = j:\dev\wx2\wxWindows WXUSINGDLL=0 !include $(WXDIR)\src\makevc.env 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) $(PROGRAM).exe: $(DUMMYOBJ) $(WXLIB) $(OBJECTS) $(link) @<< -out:$(PROGRAM).exe $(LINKFLAGS) $(DUMMYOBJ) $(OBJECTS) $(LIBS) << clean: -erase $(OBJECTS) -erase *.exe -erase *.res -erase *.map -erase *.sbr -erase *.pdb