]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | # Makefile for Autoconf. |
2 | # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. | |
3 | ||
4 | # This program is free software; you can redistribute it and/or modify | |
5 | # it under the terms of the GNU General Public License as published by | |
6 | # the Free Software Foundation; either version 2, or (at your option) | |
7 | # any later version. | |
8 | ||
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. | |
13 | ||
14 | # You should have received a copy of the GNU General Public License | |
15 | # along with this program; if not, write to the Free Software | |
16 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
17 | # 02111-1307, USA. | |
18 | ||
19 | #### Start of system configuration section. #### | |
20 | ||
21 | GLOBAL_LIB_DIR = $(WXBASEDIR)/lib/$(OS) | |
22 | GLOBAL_BIN_DIR = $(WXBASEDIR)/bin/$(OS) | |
23 | ||
24 | # define toolkit to use | |
25 | TOOLKIT_DEF = -D@TOOLKIT_DEF@ | |
26 | ||
27 | # general compiler stuff | |
28 | OPTIMISE = @OPTIMISE@ | |
29 | PROFILE = @PROFILE@ | |
4acbf245 | 30 | DEBUG = @WXDEBUG@ @WXDEBUG_DEFINE@ |
c801d85f KB |
31 | |
32 | # c-compiler stuff | |
33 | CC = @CC@ | |
34 | CFLAGS = @CFLAGS@ $(OPTIMISE) $(PROFILE) $(DEBUG) | |
35 | CPP = @CPP@ | |
36 | ||
37 | # c++-compiler stuff | |
38 | CXX = @CXX@ | |
39 | CXXFLAGS = @CXXFLAGS@ $(OPTIMISE) $(PROFILE) $(DEBUG) | |
40 | CXXCPP = @CXXCPP@ | |
41 | ||
42 | # shared compile stuff | |
43 | PICFLAGS = @PICFLAGS@ | |
44 | CREATE_SHARED = @CREATE_SHARED@ | |
45 | ||
46 | # other stuff | |
47 | RM = rm -f | |
48 | LEX = @LEX@ | |
49 | LEXLIB = @LEXLIB@ | |
50 | YACC = @YACC@ | |
51 | RANLIB = @RANLIB@ | |
52 | INSTALL = @INSTALL@ | |
53 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
54 | INSTALL_DATA = @INSTALL_DATA@ | |
55 | AWK = @AWK@ | |
56 | LN_S = @LN_S@ | |
57 | CJPEG_PROG = | |
58 | CONVERT_PATH = /usr/bin/X11 | |
59 | CONVERT_PROG = /usr/bin/X11/convert | |
60 | DJPEG_PROG = | |
61 | GIFTOPNM_PROG = | |
62 | NETPBM_PATH = | |
63 | ||
64 | prefix = @prefix@ | |
65 | exec_prefix = @exec_prefix@ | |
66 | ||
67 | # Directory in which to install scripts. | |
68 | #bindir = @bindir@ | |
69 | ||
70 | # Directory in which to install library files. | |
71 | datadir = @datadir@ | |
72 | acdatadir = $(datadir)/autoconf | |
73 | ||
74 | # Directory in which to install documentation info files. | |
75 | infodir = @infodir@ | |
76 | ||
77 | X_CFLAGS = @X_CFLAGS@ | |
78 | X_LIBS = @X_LIBS@ | |
79 | X_EXTRA_LIBS = @X_EXTRA_LIBS@ | |
80 | X_PRE_LIBS = @X_PRE_LIBS@ | |
81 | ||
82 | GUI_TK_INCLUDE = @GUI_TK_INCLUDE@ | |
83 | GUI_TK_LIBRARY = @GUI_TK_LIBRARY@ | |
84 | GUI_TK_LINK = @GUI_TK_LINK@ | |
85 | ||
86 | OPENGL_INCLUDE = @OPENGL_INCLUDE@ | |
87 | OPENGL_LIBRARY = @OPENGL_LIBRARY@ | |
88 | OPENGL_LINK = @OPENGL_LINK@ | |
89 | ||
90 | THREADS_LINK = @THREADS_LINK@ | |
91 | ||
92 | # INCLUDES | |
93 | WX_INCLUDES = \ | |
94 | $(TOOLKIT_DEF) \ | |
95 | -I. \ | |
96 | -I.. \ | |
97 | -I$(WXBASEDIR)/include \ | |
c801d85f KB |
98 | $(GUI_TK_INCLUDE) \ |
99 | $(OPENGL_INCLUDE) \ | |
100 | $(X_CFLAGS) | |
101 | ||
53010e52 RR |
102 | # -I$(WXBASEDIR)/src/png \ |
103 | # -I$(WXBASEDIR)/src/zlib \ | |
104 | # -I$(WXBASEDIR)/src/gdk_imlib \ | |
105 | ||
c801d85f KB |
106 | WX_LIBS = -L$(GLOBAL_LIB_DIR) -lwx_gtk |
107 | ||
108 | OPENGL_LIBS = $(OPENGL_LIBRARY) $(OPENGL_LINK) | |
109 | ||
110 | GUI_TK_LIBS = $(GUI_TK_LIBRARY) $(GUI_TK_LINK) | |
111 | ||
112 | LINK = $(CXX) -o $@ | |
113 | LINK_LIBS= \ | |
114 | $(WX_LIBS) \ | |
115 | $(GUI_TK_LIBS) \ | |
116 | $(X_EXTRA_LIBS) \ | |
bdc6fff9 GL |
117 | $(X_PRE_LIBS) \ |
118 | $(THREADS_LINK) | |
c801d85f KB |
119 | |
120 | # $(X_LIBS) -lX11 -lXext -lm gtk-config does this for me | |
121 | ||
bdc6fff9 | 122 | # Don't include $(OPENGL_LIBS) in LINK_LIBS; they |
c801d85f KB |
123 | # can be conveniently added to BIN_LINK in Makefile.in. |
124 | ||
125 | #### End of system configuration section. #### |