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