]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/makewat.env
Applied patch [ 638561 ] Allow SetFont(wxNullFont) in wxGTK
[wxWidgets.git] / src / makewat.env
... / ...
CommitLineData
1# File: makewat.env
2# Purpose: Watcom environments for wxWindows makefiles.
3# Author: Julian Smart and others
4#
5# The main things to change are:
6#
7# WATCOM: set to where the compiler is installed
8# WXDIR: set to where the wxWindows is installed
9# MODE: set to windows [16 bit windows], nt [win32s], or win386 [32-bit non-WIN32]
10
11FINAL=0
12WATCOMDIR=$(%WATCOM)
13
14.EXTENSIONS:
15.EXTENSIONS: .exe .obj .c .cc .cpp .res .rc .def
16
17#WXDIR = d:\wx2\wxwind~1
18WXDIR = $(%WXWIN)
19WXINC = $(WXDIR)\include
20
21# Suffixes
22OBJSUFF=obj
23SRCSUFF=cpp
24
25WXDEBUG=0
26
27!ifneq NOPRECOMP 1
28PRECOMP = /fh=$(WXDIR)\src\msw\watcom.pch
29!endif
30
31!ifeq WXDEBUG 1
32DEBUGFLAGS = /D__WXDEBUG__ /o1
33DEBUGINFO = debug all
34!else
35DEBUGFLAGS =
36DEBUGINFO =
37!endif
38
39RC = wrc
40
41LEVEL = 386
42CCC = wpp$(LEVEL)
43CC = wcc$(LEVEL)
44OS_TARGET = nt_win
45MODEL =
46# If you use win95, assumptions will be made about Win95 icon format etc.
47# so nt_win is probably better for simultaneous Win32s/Win95/NT operation.
48LINKOPTION = nt_win # win95
49WINVERFLAGS = /dWINVER=0x400 /d__WIN95__
50BINDCOMMAND = wrc
51WATLIBDIR = $(WATCOMDIR)\lib386\nt
52MINDATA =
53MAXDATA =
54STACK = option stack=64k
55LIBS = $(WXDIR)\lib\wx.lib $(WXDIR)\lib\regex.lib $(WXDIR)\lib\zlib.lib $(WXDIR)\lib\png.lib $(WXDIR)\lib\tiff.lib $(WXDIR)\lib\jpeg.lib &
56 $(WATLIBDIR)\comctl32.lib $(WATLIBDIR)\comdlg32.lib &
57 $(WATLIBDIR)\ole32.lib $(WATLIBDIR)\oleaut32.lib $(WATLIBDIR)\opengl32.lib &
58 $(WATLIBDIR)\uuid.lib $(WXDIR)\lib\watcom\odbc32.lib
59IFLAGS = -i=$(WXDIR)\lib\msw -i=$(WXINC) -i=$(WXDIR)\contrib\include -i=$(%watcom)\h;$(%watcom)\h\nt;$(WXDIR)\src\regex;$(WXDIR)\src\png;$(WXDIR)\src\zlib;$(WXDIR)\src\jpeg;$(WXDIR)\src\tiff;$(WXDIR)\include\wx\msw\gnuwin32
60RESFLAGS1 = -r -bt=nt /i$(WXDIR)\include /i$(WXDIR)\contrib\include $(WINVERFLAGS)
61RESFLAGS2 = -R $(name) /i$(WXDIR)\include /i$(WXDIR)\contrib\include $(WINVERFLAGS)
62
63# Here are some possible optimization flags:
64# /5r Pentium timings
65# /fp5 /fpi87 Inline 80x87 instructions optimized for Pentium: coprocessor must be present
66# /ox Standard optimizations
67# /or Reordering for Pentium timings (included in /ox)
68# The Watcom-recommended flags for optimum Pentium speed are:
69# /oneatx /zp4 /5 /fpi87 /fp5
70
71OPTFLAGS=/ox /5r
72
73# /d1 for line numbers only: anything else produces an enormous wx32.lib
74#
75# NB: /bm switch is needed for thread-safe runtime, if you don't use
76# wxThread you may remove it
77CPPFLAGS = /bt=nt /w1 /DWIN32 /bm /zq $(OPTFLAGS) $(MODEL) $(PRECOMP) $(DEBUGFLAGS) /d__WXMSW__ $(WINVERFLAGS) $(EXTRACPPFLAGS) # /d__WATCOMC__
78
79.cpp.obj: # $< # .AUTODEPEND
80 *$(CCC) $(CPPFLAGS) $(IFLAGS) $<
81
82.c.obj: # $< # .AUTODEPEND
83 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
84
85# This doesn't work for wcc
86# %create tmp.lbc
87# @%append tmp.lbc $(CPPFLAGS) $(IFLAGS) $<
88# echo $<
89# $(CC) @tmp.lbc
90
91dummy: .SYMBOLIC
92 @echo Please give a target for wxWin makefiles: the usual one is 'all'.
93
94erasepch: .SYMBOLIC
95 -erase $(WXDIR)\src\msw\watcom.pch