# File: makefile.nt
# Author: Julian Smart
# Created: 1999
-# Updated:
+# Updated:
# Copyright: (c) Julian Smart
#
# Makefile environment for building samples. Include this from
# Use FINAL=1 argument to nmake to build final version with no debugging
# info
-# Set WXDIR for your system
+# Set WXDIR for your system (hint, set an environment variable named WXWIN)
WXDIR = $(WXWIN)
WXUSINGDLL=0
nmake -f makefile.vc clean
# cd $(THISDIR)
-$(PROGRAM).exe: $(DUMMYOBJ) $(WXLIB) $(OBJECTS)
+$(PROGRAM).exe: $(DUMMYOBJ) $(WXLIB) $(OBJECTS) $(PROGRAM).res
$(link) @<<
-out:$(PROGRAM).exe
$(LINKFLAGS)
-$(DUMMYOBJ) $(OBJECTS)
+$(DUMMYOBJ) $(OBJECTS) $(PROGRAM).res
$(LIBS)
<<
+$(PROGRAM).res : $(PROGRAM).rc $(WXDIR)\include\wx\msw\wx.rc
+ $(rc) -r /i$(WXDIR)\include -fo$@ $(PROGRAM).rc
+
clean:
-erase $(OBJECTS)
-erase *.exe