]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | # |
2 | # File: makefile.nt | |
3 | # Author: Julian Smart | |
4 | # Created: 1997 | |
5 | # Updated: | |
6 | # Copyright: (c) 1997, Julian Smart | |
7 | # | |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile : Builds wxWindows library wx.lib for VC++ (32-bit) | |
11 | # Arguments: | |
12 | # | |
13 | # FINAL=1 argument to nmake to build version with no debugging info. | |
14 | # dll builds a library (wxdll.lib) suitable for creating DLLs | |
15 | # * Note that the dll target is experimental - see docs/dll.txt. | |
16 | # | |
17 | !include <ntwxwin.mak> | |
18 | ||
19 | THISDIR=$(WXWIN)\src | |
20 | ||
21 | all: | |
22 | cd msw | |
23 | nmake -f makefile.nt | |
24 | cd $(THISDIR) | |
25 | ||
26 | clean: | |
27 | cd msw | |
28 | nmake -f makefile.nt clean | |
29 | cd $(THISDIR) | |
30 | ||
31 | cleanall: | |
32 | cd msw | |
33 | nmake -f makefile.nt cleanall | |
34 | cd $(THISDIR) | |
35 |