]>
Commit | Line | Data |
---|---|---|
031dfec8 JS |
1 | # |
2 | # File: makefile.vc | |
3 | # Author: Julian Smart | |
4 | # Created: 2000 | |
5 | # Updated: | |
6 | # Copyright: (c) Julian Smart | |
7 | # | |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile : Builds wxrcedit | |
11 | # Use FINAL=1 argument to nmake to build final version with no debugging | |
12 | # info | |
13 | # Set WXDIR for your system | |
14 | WXDIR = $(WXWIN) | |
15 | ||
16 | PROGRAM=wxrcedit | |
17 | ||
18 | FINAL=0 | |
19 | ||
20 | !if "$(FINAL)" == "0" | |
21 | EXTRALIBS=$(WXDIR)\lib\wxxmld.lib | |
22 | !else | |
23 | EXTRALIBS=$(WXDIR)\lib\wxxml.lib | |
24 | !endif | |
25 | ||
26 | OBJECTS=edapp.obj editor.obj nodehnd.obj prophnd.obj xmlhelpr.obj | |
27 | ||
28 | !include $(WXDIR)\src\makeprog.vc | |
29 |