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