]>
Commit | Line | Data |
---|---|---|
fe71f65c RR |
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 minimal example (DOS). | |
11 | ||
12 | !if "$(BCCDIR)" == "" | |
13 | !error You must define the BCCDIR variable in autoexec.bat, e.g. BCCDIR=d:\bc4 | |
14 | !endif | |
15 | ||
16 | !if "$(WXWIN)" == "" | |
17 | !error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx | |
18 | !endif | |
19 | ||
20 | WXDIR = $(WXWIN) | |
21 | !include $(WXDIR)\src\makebcc.env | |
22 | ||
23 | THISDIR = $(WXDIR)\samples\minimal | |
24 | WXLIB = $(WXDIR)\lib\wx.lib | |
25 | LIBS=$(WXLIB) mathwl cwl import | |
26 | INC=-I$(WXDIR)\include\base -I$(WXDIR)\include\msw | |
27 | CFG=$(WXDIR)\src\wxwin.cfg | |
28 | ||
29 | !ifndef FINAL | |
30 | FINAL=0 | |
31 | !endif | |
32 | ||
33 | !if "$(FINAL)" == "0" | |
34 | LINKFLAGS=/v/Vt /Twe /L$(WXDIR)\lib;$(BCCDIR)\lib | |
35 | OPT = -Od | |
36 | DEBUG_FLAGS= -v | |
37 | !else | |
38 | LINKFLAGS=/Twe /L$(WXDIR)\lib;$(BCCDIR)\lib | |
39 | OPT = -O2 | |
40 | DEBUG_FLAGS= | |
41 | !endif | |
42 | CPPFLAGS=$(DEBUG_FLAGS) $(OPT) @$(CFG) | |
43 | ||
44 | OBJECTS = minimal.obj | |
45 | ||
46 | minimal: minimal.exe | |
47 | ||
48 | all: minimal.exe | |
49 | ||
50 | minimal.exe: $(WXLIB) minimal.obj minimal.def minimal.res | |
51 | tlink $(LINKFLAGS) @&&! | |
52 | c0wl.obj minimal.obj | |
53 | minimal | |
54 | nul | |
55 | $(LIBS) | |
56 | minimal.def | |
57 | ! | |
58 | rc -31 -K minimal.res | |
59 | ||
60 | .$(SRCSUFF).obj: | |
61 | bcc $(CPPFLAGS) -c {$< } | |
62 | ||
63 | minimal.obj: minimal.$(SRCSUFF) | |
64 | ||
65 | minimal.res : minimal.rc $(WXDIR)\include\msw\wx.rc | |
66 | rc -r /i$(BCCDIR)\include /i$(WXDIR)\include\msw /i$(WXDIR)\contrib\fafa minimal | |
67 | ||
68 | clean: | |
69 | -erase *.obj | |
70 | -erase *.exe | |
71 | -erase *.res | |
72 | -erase *.map | |
73 | -erase *.rws |