]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | # |
2 | # File: makefile.nt | |
3 | # Author: Julian Smart | |
4 | # Created: 1993 | |
5 | # Updated: | |
4a9dba0e | 6 | # Copyright: |
2bda0e17 KB |
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 | ||
48d1144b | 19 | !include $(WXDIR)\src\makevc.env |
2bda0e17 KB |
20 | |
21 | DEBUG_FLAGS="/Zi /FR" | |
22 | LINK_DEBUG_FLAGS="/RELEASE" | |
23 | ||
24 | clean: | |
25 | cd $(WXDIR)\utils\nplugin\src | |
48d1144b | 26 | nmake -f makefile.vc clean |
2bda0e17 | 27 | cd $(WXDIR)\utils\nplugin\samples\simple |
48d1144b | 28 | nmake -f makefile.vc clean |
2bda0e17 | 29 | cd $(WXDIR)\utils\nplugin\samples\gui |
48d1144b | 30 | nmake -f makefile.vc clean |
2bda0e17 KB |
31 | cd $(WXDIR)\utils\nplugin |
32 |