]> git.saurik.com Git - wxWidgets.git/blame - src/makeg295.env
Some cleanup.
[wxWidgets.git] / src / makeg295.env
CommitLineData
d04d2fb5
RS
1# makeg95.env
2# Common makefile settings for wxWindows programs
3# This file is included by all the other makefiles, thus changes
4# made here take effect everywhere (except where overriden).
5#
6# An alternative to editing this file is to create a shell script
7# to export specific variables, and call make with the -e switch
8# to override makefile variables. See wx/install/install.txt.
9# And you can override specific variables on the make command line, e.g.
10#
11# make -f makefile.unix WXDEBUG=''
12#
13# You may prefer to use the GNU configure script than raw makefiles -
14# see contrib/wxshlib.
15#
16
17########################## Compiler ##################################
18
19# C++ compiler
20# For AIX/CSet++: use CC = xlC
21# For IRIX: use CC = CC
22# CC = gcc-2.6.2
23CC = gcc --pipe -fvtable-thunks
24
25# C compiler for pure C programs
26# Typical: CC=g++ , CCC=gcc
27# CC=cl386 /Tp, CCC=cl386
28#
29# (Used only for XView, file sb_scrol.c)
30#
31CCC = $(CC)
32
33# Compiler used for LEX generated C
34CCLEX=gcc
35
36MAKE=make
37
38# LEX
39LEX=flex # -t -L
40
41# YACC. yacc or bison
42YACC=byacc
43#YACC=bison
44
45# Settings for Cyginw/Mingw32
46RESCOMP=windres.exe
47RCINPUTSWITCH=-i
48RCOUTPUTSWITCH=-o
49RCINCSWITCH=--include-dir
50RCDEFSWITCH=--define
51
52RESFLAGS=$(RCINCSWITCH) $(WXDIR)/include $(RCDEFSWITCH) __WIN32__ $(RCDEFSWITCH) __WIN95__ $(RCDEFSWITCH) __GNUWIN32__
53
54########################## Compiler flags #############################
55
56# Miscellaneous compiler options
57# GRG: The __EGCS__ symbol is not needed anymore!
58OPTIONS= -DSTRICT # -D__EGCS__
59
60
61# Debugging information
62# AIX: comment out.
63# IRIX: -g3
64DEBUGFLAGS = -D__WXDEBUG__
65
66WIN95=1
67
68ifeq ($(WIN95),0)
69# With 3.50, Win95 will use your existing icons to show smaller ones.
70# With 4.0, you'll have to follow Win95 procedures for icons or you'll get the
71# default Windows icon.
72APPVER=3.50
73WINVERSION=-DWINVER=0x0350 -D__GNUWIN32__ -D__WIN32__ # Generic WIN32
74else
75APPVER=3.50 # 4.0
76# This means 'enable Windows 95 features' (in wxWindows and in VC++ 4.0).
77WINVERSION=-DWINVER=0x0400 -D__WIN95__ -D__GNUWIN32__ -D__WIN32__
78endif
79
80CPU=i386
81
82# Suffixes
83OBJSUFF=o
84SRCSUFF=cpp
85LIBPREFIX=lib
86LIBSUFF=a
87EXESUFF=.exe
88RESSUFF=res
89RSCSUFF=rsc
90
91# Warnings
92WARN = -Wall
93
94# Which GUI, -Dwx_xview or -Dwx_motif (don't change this)
95GUI = -D__WXMSW__ -D__WINDOWS__
96
97# according to Guillermo Rodriguez Garcia <guille@iies.es> this flag is
98# needed to make the standard div() function work - otherwise it returns
99# absolutely incorrect results and completely breaks the wxImage class
100# (where it's used extensively)
101# GRG: at least it is needed in mingw32-gcc2.8.1
102OPT = -fno-pcc-struct-return -O2 -fno-rtti -fno-exceptions
103
104# Options for ar archiver
105# AROPTIONS = crs # For IRIX and Solaris (both SYSVR4).
106AROPTIONS = ruv
107RANLIB = ranlib
108
109# Compiler libraries: defaults to GCC libraries
110#COMPLIBS=-lg++
111#for win95
112#COMPLIBS=-lgcc
113
114# Compiler or system-specific include paths
115COMPPATHS=
116
117########################## Directories ###############################
118
119
120WINLIBS=-lstdc++ -lgcc \
121 -lwinspool -lwinmm -lshell32 \
122 -lcomctl32 -lctl3d32 -lodbc32 -ladvapi32 \
123 -lole32 -loleaut32 -luuid \
124 -lodbc32 -lwsock32# -loldnames
125
126# Shouldn't need to change these...
127WXSRC=$(WXDIR)/src/msw
128WXINC=$(WXDIR)/include
129WXBASESRC=$(WXDIR)/src/common
130WXLIB=$(WXDIR)/lib/$(LIBPREFIX)wx.$(LIBSUFF)
131INC = -I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/src/jpeg -I$(WXDIR)/src/zlib $(EXTRAINC) $(COMPPATHS)
132RCLFLAGS=-cpp "cpp -lang-c++ -DWIN32 -D_WIN32 -DRCL_INVOKED -I$(WXWIN)/include"
133
134#LIBS = -lctl3d32 $(WXLIB) $(WINLIBS) $(COMPLIBS)
135LIBS = $(WXLIB) $(WINLIBS) $(COMPLIBS) $(EXTRALIBS)
136
137WINFLAGS=-D_X86_=1 -DWIN32 -D_WIN32 $(WINVERSION)
138
139#for windows 95
140XINCLUDE=$(WINFLAGS)
141XLIB=$(LIBS)
142LDLIBS = $(LIBS)
143
144# Directory for object files (don't change)
145# OBJDIR = objects$(GUISUFFIX)
146OBJDIR = .
147
148# You shouldn't need to change these...
149CPPFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACPPFLAGS)
150CFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACFLAGS)
151WINDOWSLDFLAGS=-Wl,--subsystem,windows -mwindows
152LDFLAGS = $(WINDOWSLDFLAGS) -L$(WXDIR)/lib $(EXTRALDFLAGS)
153
154.SUFFIXES: .rc .$(RESSUFF) .$(RSCSUFF) .cpp .c
155
156# Set these in a batch file instead e.g. install/cygnus.bat
157# RCINCLUDE="$(WXDIR)/include/msw;$(WXDIR)/contrib/fafa;$(WXDIR)/contrib/itsybits"; \
158# CPLUS_INCLUDE_PATH=/usr/H-i386-cygwin32/i386-cygwin32/include:/usr/H-i386-cygwin32/lib/gcc-lib/i386-cygwin32/cygnus-2.7.2-961023/include:$(WXDIR)/include/common:$(WXDIR)/include/msw:$(WXDIR)/contrib/fafa:$(WXDIR)/contrib/itsybits; \
159# export CPLUS_INCLUDE_PATH RCINCLUDE; \
160
161#.rc.$(RESSUFF): $< $(WXDIR)/include/msw/wx.rc
162# $(RC) $(RESFLAGS1) $< $(RESFLAGS2) $*.$(RESSUFF) $(RCLFLAGS)
163
164#.$(RESSUFF).$(RSCSUFF): $<
165# $(CVTRES) $< $*.$(RSCSUFF)
166
167.$(SRCSUFF).$(OBJSUFF):
168 $(CC) -c $(CPPFLAGS) -o $@ $*.$(SRCSUFF)
169
170.c.o:
171 $(CC) -c $(CPPFLAGS) -o $@ $*.c
172
173