]> git.saurik.com Git - wxWidgets.git/blame - samples/internat/makefile.bcc
CodeWarrior Support (no defines in project possible)
[wxWidgets.git] / samples / internat / makefile.bcc
CommitLineData
c801d85f
KB
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 internat 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
20WXDIR = $(WXWIN)
21!include $(WXDIR)\src\makebcc.env
22
23THISDIR = $(WXDIR)\samples\internat
24WXLIB = $(WXDIR)\lib\wx.lib
25LIBS=$(WXLIB) mathwl cwl import
26INC=-I$(WXDIR)\include\base -I$(WXDIR)\include\msw
27CFG=$(WXDIR)\src\wxwin.cfg
28
29!ifndef FINAL
30FINAL=0
31!endif
32
33!if "$(FINAL)" == "0"
34LINKFLAGS=/v/Vt /Twe /L$(WXDIR)\lib;$(BCCDIR)\lib
35OPT = -Od
36DEBUG_FLAGS= -v
37!else
38LINKFLAGS=/Twe /L$(WXDIR)\lib;$(BCCDIR)\lib
39OPT = -O2
40DEBUG_FLAGS=
41!endif
42CPPFLAGS=$(DEBUG_FLAGS) $(OPT) @$(CFG)
43
44OBJECTS = internat.obj
45
46internat: internat.exe
47
48all: internat.exe
49
50internat.exe: $(WXLIB) internat.obj internat.def internat.res
51 tlink $(LINKFLAGS) @&&!
52c0wl.obj internat.obj
53internat
54nul
55$(LIBS)
56internat.def
57!
58 rc -31 -K internat.res
59
60.$(SRCSUFF).obj:
61 bcc $(CPPFLAGS) -c {$< }
62
63internat.obj: internat.$(SRCSUFF)
64
65internat.res : internat.rc $(WXDIR)\include\msw\wx.rc
66 rc -r /i$(BCCDIR)\include /i$(WXDIR)\include\msw /i$(WXDIR)\contrib\fafa internat
67
68clean:
69 -erase *.obj
70 -erase *.exe
71 -erase *.res
72 -erase *.map
73 -erase *.rws