]>
Commit | Line | Data |
---|---|---|
bbf1f0e5 KB |
1 | # |
2 | # File: makefile.dos | |
3 | # Author: Julian Smart | |
4 | # Created: 1993 | |
5 | # Updated: | |
f0f7bd8a | 6 | # Copyright: |
bbf1f0e5 KB |
7 | # |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile : Builds taskbar example (DOS). | |
11 | # Use FINAL=1 argument to nmake to build final version with no debugging | |
12 | # info | |
13 | ||
14 | WXDIR = $(WXWIN) | |
15 | ||
16 | !include $(WXDIR)\src\makemsc.env | |
17 | ||
18 | THISDIR = $(WXDIR)\samples\taskbar | |
19 | ||
20 | !ifndef FINAL | |
21 | FINAL=0 | |
22 | !endif | |
23 | ||
24 | HEADERS = | |
25 | SOURCES = tbtest.$(SRCSUFF) | |
26 | OBJECTS = tbtest.obj | |
27 | ||
28 | all: tbtest.exe | |
29 | ||
30 | wx: | |
31 | cd $(WXDIR)\src\msw | |
32 | nmake -f makefile.dos FINAL=$(FINAL) | |
33 | cd $(THISDIR) | |
34 | ||
35 | wxclean: | |
36 | cd $(WXDIR)\src\msw | |
37 | nmake -f makefile.dos clean | |
38 | cd $(THISDIR) | |
39 | ||
40 | tbtest.exe: $(WXDIR)\src\msw\dummy.obj $(WXLIB) tbtest.obj tbtest.def tbtest.res | |
41 | link $(LINKFLAGS) @<< | |
42 | tbtest.obj $(WXDIR)\src\msw\dummy.obj, | |
43 | tbtest, | |
44 | NUL, | |
45 | $(LIBS), | |
46 | tbtest.def | |
47 | ; | |
48 | << | |
49 | rc -K tbtest.res | |
50 | ||
51 | tbtest.obj: tbtest.$(SRCSUFF) | |
52 | cl @<< | |
53 | $(CPPFLAGS) /c /Tp $*.$(SRCSUFF) | |
54 | << | |
55 | ||
56 | tbtest.res : tbtest.rc $(WXDIR)\include\wx\msw\wx.rc | |
57 | rc -r /i$(WXDIR)\include tbtest | |
58 | ||
59 | clean: | |
60 | -erase *.obj | |
61 | -erase *.exe | |
62 | -erase *.res | |
63 | -erase *.map | |
64 | -erase *.sbr | |
65 | -erase *.pdb |