]> git.saurik.com Git - wxWidgets.git/blame - samples/joytest/makefile.bcc
Added script to help make wxMotif via configure; nativdlg sample works again;
[wxWidgets.git] / samples / joytest / makefile.bcc
CommitLineData
bbf1f0e5
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 joytest 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!ifndef FINAL
21FINAL=0
22!endif
23
24WXDIR = $(WXWIN)
25!include $(WXDIR)\src\makebcc.env
26
27THISDIR = $(WXDIR)\samples\joytest
28WXLIB = $(WXDIR)\lib\wx.lib
29LIBS=$(WXLIB) mathwl cwl import
30INC=-I$(WXDIR)\include\base -I$(WXDIR)\include\msw
31CFG=$(WXDIR)\src\wxwin.cfg
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
44HEADERS = joytest.h
45SOURCES = joytest.$(SRCSUFF)
46OBJECTS = joytest.obj
47
48joytest: joytest.exe
49
50all: joytest.exe
51
52joytest.exe: $(WXLIB) joytest.obj joytest.def joytest.res
53 tlink $(LINKFLAGS) @&&!
54c0wl.obj joytest.obj
55joytest
56nul
57$(LIBS)
58joytest.def
59!
60 rc -30 -K joytest.res
61
62.$(SRCSUFF).obj:
63 bcc $(CPPFLAGS) -c {$< }
64
65joytest.obj: joytest.$(SRCSUFF)
66
67joytest.res : joytest.rc $(WXDIR)\include\msw\wx.rc
68 rc -r /i$(BCCDIR)\include /i$(WXDIR)\include\msw /i$(WXDIR)\contrib\fafa joytest
69
70clean:
71 -erase *.obj
72 -erase *.exe
73 -erase *.res
74 -erase *.map
75 -erase *.rws