]>
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 | # | |
48d1144b | 17 | !include <makevc.env> |
2bda0e17 KB |
18 | |
19 | THISDIR=$(WXWIN)\src | |
20 | ||
21 | all: | |
22 | cd msw | |
7921cf2b | 23 | nmake -f makefile.vc |
2bda0e17 KB |
24 | cd $(THISDIR) |
25 | ||
26 | clean: | |
27 | cd msw | |
7921cf2b | 28 | nmake -f makefile.vc clean |
2bda0e17 KB |
29 | cd $(THISDIR) |
30 | ||
31 | cleanall: | |
32 | cd msw | |
7921cf2b | 33 | nmake -f makefile.vc cleanall |
2bda0e17 KB |
34 | cd $(THISDIR) |
35 |