]> git.saurik.com Git - wxWidgets.git/blob - src/makeenvs/sgi.env
Fixed wxPostScript printing problem (used wrong constructor, and the right
[wxWidgets.git] / src / makeenvs / sgi.env
1 # sgi.env
2 # SGI
3 #
4 # Common makefile settings for wxWindows programs
5 # This file is included by all the other makefiles, thus changes
6 # made here take effect everywhere (except where overriden).
7 # RCS-ID: $Id$
8 #
9 ########################### Programs #################################
10
11 # Replace this with your own path if necessary
12 WXWIN = /home/jds/wx2
13 WXDIR = $(WXWIN)
14
15 # C++ compiler
16 CC = CC
17
18 # C compiler
19 CCC = cc
20
21 # Compiler for lex/yacc .c programs
22 CCLEX = $(CCC)
23
24 LEX = lex
25 YACC = yacc
26 # Note: if using bison, use -y option for yacc compatibility
27 # YACC = bison -y
28 MAKE = make
29 AROPTIONS = ruv
30 RANLIB = echo
31
32 ############################ Switches #################################
33
34 # Debug/trace mode. 1 or more for debugging.
35 DEBUG = 0
36 GUI = -D__WXSTUBS__ -D__UNIX__
37 GUISUFFIX = _stubs
38
39 ########################## Compiler flags #############################
40
41 # Misc options
42 OPTIONS = -32 -D__WXDEBUG__ -D__SGI__ -D__SGI_CC__
43 COPTIONS = -32 -Xcpluscomm -D__SGI__ -D__SGI_CC__
44 DEBUGFLAGS = -g3
45 INCLUDE =
46 WARN = -w
47 CWARN = -w
48 OPT =
49
50 ############################ Includes #################################
51
52 # Compiler or system-specific include paths
53 COMPPATHS =
54 XINCLUDE = -I/usr/include/X11 -I/usr/include/Xm \
55 -I/usr/include/X11/Xm -I/usr/include
56 XLIB = -L/usr/local/X11/lib -L/usr/X11/lib -L/usr/X11R6/lib
57
58 ############################ Libraries ################################
59
60 COMPLIBS =
61 #COMPLIBS = -lstdc++
62 #COMPLIBS = -lPW
63 GUILDLIBS = -lwx_stubs $(COMPLIBS) -lXm -lXmu -lXt -lXpm -lX11 -lm
64
65 ############################# Suffixes ################################
66
67 OBJSUFF =o
68 SRCSUFF =cpp
69 MAINSUFF =cpp
70
71 ####################### No changes below this line ####################
72
73 WXINC = $(WXDIR)/include
74 WXLIB = $(WXDIR)/lib/libwx$(GUISUFFIX).a
75 INC = -I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/src/zlib $(COMPPATHS)
76
77 # Directory for object files
78 OBJDIR = objects$(GUISUFFIX)
79
80 CPPFLAGS = $(EXTRACPPFLAGS) $(INC) $(XINCLUDE) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT)
81 CFLAGS = $(EXTRACFLAGS) $(INC) $(XINCLUDE) $(COPTIONS) $(GUI) $(DEBUGFLAGS) $(CWARN) $(OPT)
82 LDFLAGS = $(EXTRALDFLAGS) $(XLIB) -L$(WXDIR)/lib
83 LDLIBS = $(EXTRALDLIBS) $(GUILDLIBS)
84
85 # Clears all default suffixes
86 .SUFFIXES: .o .cpp .c
87
88 .c.o :
89 $(CCC) -c $(CFLAGS) -o $@ $<
90
91 .cpp.o :
92 $(CC) -c $(CPPFLAGS) -o $@ $<
93
94 .C.o :
95 $(CC) -c $(CPPFLAGS) -o $@ $<
96
97 ####################### Targets to allow multiple GUIs ####################
98
99 dummy:
100 echo Use a target: one of motif, stubs
101
102 stubs:
103 make -f makefile.unx all GUI='-D__WXSTUBS__ -D__UNIX__' GUISUFFIX='_stubs' GUILDLIBS='-lwx_stubs $(COMPLIBS) -lXm -lXmu -lXt -lX11 -lm'
104
105 motif:
106 make -f makefile.unx all GUI='-D__WXMOTIF__ -D__UNIX__' GUISUFFIX='_motif' GUILDLIBS='-lwx_motif $(COMPLIBS) -lpng -lzlib -lXm -lXmu -lXt -lXpm -lX11 -lm'
107
108 gtk:
109 make -f makefile.unx all GUI='-D__WXGTK__ -D__UNIX__' GUISUFFIX='_gtk' GUILDLIBS='-lwx_gtk2 $(COMPLIBS) -ldl -lgtk -lgdk -lglib -lpng -lzlib -lX11 -lm -pthread'
110
111 cleanstubs:
112 make -f makefile.unx clean GUI='-D__WXSTUBS__ -D__UNIX__' GUISUFFIX='_stubs' GUILDLIBS='-lwx_stubs $(COMPLIBS) -lXm -lXmu -lXt -lX11 -lm'
113
114 cleanmotif:
115 make -f makefile.unx clean GUI='-D__WXMOTIF__ -D__UNIX__' GUISUFFIX='_motif' GUILDLIBS='-lwx_motif $(COMPLIBS) -lXm -lXmu -lXt -lX11 -lm'
116
117 $(OBJDIR):
118 mkdir $(OBJDIR)
119