]> git.saurik.com Git - wxWidgets.git/blob - samples/nativdlg/makefile.b32
now MSW stuff is complete
[wxWidgets.git] / samples / nativdlg / makefile.b32
1 #
2 # File: makefile.b32
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 32bit nativdlg example.
11
12 # WXWIN and BCCDIR are set by parent make
13
14 WXDIR = $(WXWIN)
15 !include $(WXDIR)\src\makeb32.env
16
17 WXLIBDIR = $(WXDIR)\lib
18 WXLIB = $(WXLIBDIR)\wx32.lib
19 LIBS=$(WXLIB) cw32 import32
20
21 TARGET=nativdlg
22
23 !if "$(FINAL)" == "0"
24 LINKFLAGS=/v /Tpe /L$(WXLIBDIR);$(BCCDIR)\lib
25 OPT = -Od
26 DEBUG_FLAGS= -v
27 !else
28 LINKFLAGS=/Tpe /L$(WXLIBDIR);$(BCCDIR)\lib
29 OPT = -Od
30 DEBUG_FLAGS =
31 !endif
32 CPPFLAGS=$(DEBUG_FLAGS) $(OPT) @$(CFG)
33
34 OBJECTS = nativdlg.obj
35
36 $(TARGET).exe: $(OBJECTS) $(TARGET).def $(TARGET).res
37 tlink32 $(LINKFLAGS) @&&!
38 c0w32.obj $(OBJECTS)
39 $(TARGET)
40 nul
41 $(LIBS)
42 $(TARGET).def
43 !
44 brc32 -K $(TARGET).res
45
46 .$(SRCSUFF).obj:
47 bcc32 $(CPPFLAGS) -c {$< }
48
49 .c.obj:
50 bcc32 $(CPPFLAGS) -P- -c {$< }
51
52 nativdlg.obj: nativdlg.$(SRCSUFF) nativdlg.h # dialog1.wxr
53
54 $(TARGET).res : $(TARGET).rc $(WXDIR)\include\wx\msw\wx.rc
55 brc32 -r /D__WINDOWS__ /i$(BCCDIR)\include /i$(WXDIR)\include $(TARGET)
56
57 clean:
58 -erase *.obj
59 -erase *.exe
60 -erase *.res
61 -erase *.map
62 -erase *.rws
63
64