]>
Commit | Line | Data |
---|---|---|
1 | # | |
2 | # File: makefile.nt | |
3 | # Author: Julian Smart | |
4 | # Created: 1993 | |
5 | # Updated: | |
6 | # Copyright: | |
7 | # | |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile : Builds utilities for Win95, VC++ 4.0 | |
11 | # Use FINAL=1 argument to nmake to build final version with no debugging | |
12 | # info | |
13 | ||
14 | # Set WXDIR for your system | |
15 | WXDIR = $(WXWIN) | |
16 | ||
17 | THISDIR=$(WXDIR)\utils\nplugin | |
18 | ||
19 | !include $(WXDIR)\src\makevc.env | |
20 | ||
21 | DEBUG_FLAGS="/Zi /FR" | |
22 | LINK_DEBUG_FLAGS="/RELEASE" | |
23 | ||
24 | clean: | |
25 | cd $(WXDIR)\utils\nplugin\src | |
26 | nmake -f makefile.vc clean | |
27 | cd $(WXDIR)\utils\nplugin\samples\simple | |
28 | nmake -f makefile.vc clean | |
29 | cd $(WXDIR)\utils\nplugin\samples\gui | |
30 | nmake -f makefile.vc clean | |
31 | cd $(WXDIR)\utils\nplugin | |
32 |