]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/makeg95.env
declared (not implemented yet) wxMimeTypesManager::AddFallbacks()
[wxWidgets.git] / src / makeg95.env
... / ...
CommitLineData
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
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
57OPTIONS= -D__EGCS__ -DSTRICT # -D__MINGW32__
58
59# Debugging information
60# AIX: comment out.
61# IRIX: -g3
62DEBUGFLAGS = -D__WXDEBUG__
63
64WIN95=1
65
66ifeq ($(WIN95),0)
67# With 3.50, Win95 will use your existing icons to show smaller ones.
68# With 4.0, you'll have to follow Win95 procedures for icons or you'll get the
69# default Windows icon.
70APPVER=3.50
71WINVERSION=-DWINVER=0x0350 -D__GNUWIN32__ -D__WIN32__ # Generic WIN32
72else
73APPVER=3.50 # 4.0
74# This means 'enable Windows 95 features' (in wxWindows and in VC++ 4.0).
75WINVERSION=-DWINVER=0x0400 -D__WIN95__ -D__GNUWIN32__ -D__WIN32__
76endif
77
78CPU=i386
79
80# Suffixes
81OBJSUFF=o
82SRCSUFF=cpp
83LIBPREFIX=lib
84LIBSUFF=a
85EXESUFF=.exe
86RESSUFF=res
87RSCSUFF=rsc
88
89# Warnings
90WARN = -Wall
91
92# Which GUI, -Dwx_xview or -Dwx_motif (don't change this)
93GUI = -D__WXMSW__ -D__WINDOWS__
94
95# according to Guillermo Rodriguez Garcia <guille@iies.es> this flag is needed
96# to make the standard div() functio work - otherwise it returns absolutely
97# incorrect results and completely breaks the wxImage class (where it's used
98# extensively)
99OPT = -fno-pcc-struct-return -O2 -fno-rtti -fno-exceptions
100
101# Options for ar archiver
102# AROPTIONS = crs # For IRIX and Solaris (both SYSVR4).
103AROPTIONS = ruv
104RANLIB = ranlib
105
106# Compiler libraries: defaults to GCC libraries
107#COMPLIBS=-lg++
108#for win95
109#COMPLIBS=-lgcc
110
111# Compiler or system-specific include paths
112COMPPATHS=
113
114########################## Directories ###############################
115
116
117WINLIBS=-lstdc++ -lgcc \
118 -lwinspool -lwinmm -lshell32 \
119 -lcomctl32 -lctl3d32 -lodbc32 -ladvapi32 # -loldnames
120
121# Shouldn't need to change these...
122WXSRC=$(WXDIR)/src/msw
123WXINC=$(WXDIR)/include
124WXBASESRC=$(WXDIR)/src/common
125WXLIB=$(WXDIR)/lib/$(LIBPREFIX)wx.$(LIBSUFF)
126INC = -I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/src/jpeg -I$(WXDIR)/include/wx/msw/gnuwin32 -I$(WXDIR)/src/zlib $(EXTRAINC) $(COMPPATHS)
127RCLFLAGS=-cpp "cpp -lang-c++ -DWIN32 -D_WIN32 -DRCL_INVOKED -I$(WXWIN)/include"
128
129#LIBS = -lctl3d32 $(WXLIB) $(WINLIBS) $(COMPLIBS)
130LIBS = $(WXLIB) $(WINLIBS) $(COMPLIBS) $(EXTRALIBS)
131
132WINFLAGS=-D_X86_=1 -DWIN32 -D_WIN32 $(WINVERSION)
133
134#for windows 95
135XINCLUDE=$(WINFLAGS)
136XLIB=$(LIBS)
137LDLIBS = $(LIBS)
138
139# Directory for object files (don't change)
140# OBJDIR = objects$(GUISUFFIX)
141
142# You shouldn't need to change these...
143CPPFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACPPFLAGS)
144CFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACFLAGS)
145WINDOWSLDFLAGS=-Wl,--subsystem,windows -mwindows
146LDFLAGS = $(WINDOWSLDFLAGS) -L$(WXDIR)/lib $(EXTRALDFLAGS)
147
148.SUFFIXES: .rc .$(RESSUFF) .$(RSCSUFF) .cpp .c
149
150# Set these in a batch file instead e.g. install/cygnus.bat
151# RCINCLUDE="$(WXDIR)/include/msw;$(WXDIR)/contrib/fafa;$(WXDIR)/contrib/itsybits"; \
152# 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; \
153# export CPLUS_INCLUDE_PATH RCINCLUDE; \
154
155#.rc.$(RESSUFF): $< $(WXDIR)/include/msw/wx.rc
156# $(RC) $(RESFLAGS1) $< $(RESFLAGS2) $*.$(RESSUFF) $(RCLFLAGS)
157
158#.$(RESSUFF).$(RSCSUFF): $<
159# $(CVTRES) $< $*.$(RSCSUFF)
160
161.$(SRCSUFF).$(OBJSUFF):
162 $(CC) -c $(CPPFLAGS) -o $@ $*.$(SRCSUFF)
163
164.c.o:
165 $(CC) -c $(CPPFLAGS) -o $@ $*.c
166
167