]> git.saurik.com Git - wxWidgets.git/blame - src/makeg95.env
Mods for Gnu-Win32
[wxWidgets.git] / src / makeg95.env
CommitLineData
2bda0e17
KB
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#
b2aef89b 11# make -f makefile.unix WXDEBUG=''
2bda0e17
KB
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
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
8704bf74 34CCLEX=gcc
2bda0e17
KB
35
36MAKE=make
37
38# LEX
39LEX=flex.exe -t -L
40
41# YACC. byacc or bison
42# YACC=byacc.exe
43YACC=bison.exe
44
45# Resource compiler
46RESCOMP=windres.exe
47
48RESFLAGS=--include-dir $(WXDIR)/include --define __WIN32__ --define __WIN95__ --define __GNUWIN32__
49
50########################## Compiler flags #############################
51
52# Miscellaneous compiler options
cfe780fb 53OPTIONS= # -D__MINGW32__ # -D__EGCS__
2bda0e17
KB
54
55# Debugging information
56# AIX: comment out.
57# IRIX: -g3
b2aef89b 58DEBUGFLAGS = -ggdb -D__WXDEBUG__
2bda0e17 59
341287bf
JS
60# Debug/trace mode. 1 or more for memory debugging.
61# Unfortunately this doesn't seem to work with GnuWin32 - get warning:
62# ../../include/wx/memory.h:58: warning: declaration of `operator delete(void *)'
63# throws different exceptions
64# <internal>:58: warning: previous declaration here
65# So setting to 0 for now.
66
b2aef89b 67WXDEBUG=0
2bda0e17
KB
68
69WIN95=1
70
71ifeq ($(WIN95),0)
72# With 3.50, Win95 will use your existing icons to show smaller ones.
73# With 4.0, you'll have to follow Win95 procedures for icons or you'll get the
74# default Windows icon.
75APPVER=3.50
76WINVERSION=-DWINVER=0x0350 -D__GNUWIN32__ -D__WIN32__ # Generic WIN32
77else
78APPVER=3.50 # 4.0
79# This means 'enable Windows 95 features' (in wxWindows and in VC++ 4.0).
80WINVERSION=-DWINVER=0x0400 -D__WIN95__ -D__GNUWIN32__ -D__WIN32__
81endif
82
83CPU=i386
84
85# Suffixes
86OBJSUFF=o
87SRCSUFF=cpp
88LIBPREFIX=lib
89LIBSUFF=a
90EXESUFF=.exe
91RESSUFF=res
92RSCSUFF=rsc
93
94# Warnings
2bda0e17
KB
95WARN = -Wall
96
2bda0e17 97# Which GUI, -Dwx_xview or -Dwx_motif (don't change this)
34138703 98GUI = -D__WXMSW__ -D__WINDOWS__
2bda0e17
KB
99
100# Optimization
101# OPT = -O
2bda0e17
KB
102OPT =
103
104# Options for ar archiver
105# AROPTIONS = crs # For IRIX and Solaris (both SYSVR4).
106AROPTIONS = ruv
107RANLIB = ranlib
2bda0e17
KB
108
109# Compiler libraries: defaults to GCC libraries
2bda0e17
KB
110#COMPLIBS=-lg++
111#for win95
112#COMPLIBS=-lgcc
113
114# Compiler or system-specific include paths
2bda0e17
KB
115COMPPATHS=
116
2bda0e17
KB
117########################## Directories ###############################
118
119
120WINLIBS=-lstdc++ -lgcc \
121 -lwinspool -lwinmm -lshell32 -loldnames \
27529614 122 -lcomctl32 -lctl3d32 -lodbc32 -ladvapi32
2bda0e17
KB
123
124# Shouldn't need to change these...
125WXSRC=$(WXDIR)/src/msw
126WXINC=$(WXDIR)/include
127WXBASESRC=$(WXDIR)/src/common
128WXLIB=$(WXDIR)/lib/$(LIBPREFIX)wx.$(LIBSUFF)
34138703 129INC = -I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/include/wx/msw/gnuwin32 -I$(WXDIR)/src/zlib $(EXTRAINC)$(COMPPATHS)
2bda0e17
KB
130RCLFLAGS=-cpp "cpp -lang-c++ -DWIN32 -D_WIN32 -DRCL_INVOKED -I$(WXWIN)\include"
131
132#LIBS = -lctl3d32 $(WXLIB) $(WINLIBS) $(COMPLIBS)
133LIBS = $(WXLIB) $(WINLIBS) $(COMPLIBS)
134
135WINFLAGS=-D_X86_=1 -DWIN32 -D_WIN32 $(WINVERSION)
136
137#for windows 95
138XINCLUDE=$(WINFLAGS)
139XLIB=$(LIBS)
140LDLIBS = $(LIBS)
141
142# Directory for object files (don't change)
143OBJDIR = objects$(GUISUFFIX)
144
145# You shouldn't need to change these...
b2aef89b
KB
146CPPFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) -DWXDEBUG='$(WXDEBUG)' $(WARN) $(OPT)
147CFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) -DWXDEBUG='$(WXDEBUG)' $(WARN) $(OPT)
2bda0e17
KB
148LDFLAGS = -Wl,--subsystem,windows -mwindows -L$(WXDIR)/lib
149
2bda0e17
KB
150.SUFFIXES: .rc .$(RESSUFF) .$(RSCSUFF) .cpp .c
151
152# Set these in a batch file instead e.g. install/cygnus.bat
153# RCINCLUDE="$(WXDIR)/include/msw;$(WXDIR)/contrib/fafa;$(WXDIR)/contrib/itsybits"; \
154# 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; \
155# export CPLUS_INCLUDE_PATH RCINCLUDE; \
156
157.rc.$(RESSUFF): $< $(WXDIR)/include/msw/wx.rc
158 $(RC) $(RESFLAGS1) $< $(RESFLAGS2) $*.$(RESSUFF) $(RCLFLAGS)
159
160.$(RESSUFF).$(RSCSUFF): $<
161 $(CVTRES) $< $*.$(RSCSUFF)
162
163.$(SRCSUFF).$(OBJSUFF):
164 $(CC) -c $(CPPFLAGS) -o $@ $*.$(SRCSUFF)
165
166.c.o:
167 $(CC) -c $(CPPFLAGS) -o $@ $*.c
168
169