1 # Makefile for Autoconf.
2 # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
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)
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.
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
19 #### Start of system configuration section. ####
21 GLOBAL_LIB_DIR = $(WXBASEDIR)/lib/$(OS)
22 GLOBAL_BIN_DIR = $(WXBASEDIR)/bin/$(OS)
24 # define toolkit to use
25 TOOLKIT_DEF = -D@TOOLKIT_DEF@
27 # general compiler stuff
30 DEBUG = @WXDEBUG@ @WXDEBUG_DEFINE@
36 CFLAGS = @CFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG)
40 CXXFLAGS = @CXXFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG)
43 # shared compile stuff
45 CREATE_SHARED = @CREATE_SHARED@
54 INSTALL_PROGRAM = @INSTALL_PROGRAM@
55 INSTALL_DATA = @INSTALL_DATA@
60 CONVERT_PATH = /usr/bin/X11
61 CONVERT_PROG = /usr/bin/X11/convert
66 # Base directories for installation
68 exec_prefix = @exec_prefix@
70 # Directory in which to install headers
71 includedir = @includedir@
73 # Directory in which to install library files
76 # Directory in which to install executable files
81 X_EXTRA_LIBS = @X_EXTRA_LIBS@
82 X_PRE_LIBS = @X_PRE_LIBS@
84 GUI_TK_INCLUDE = @GUI_TK_INCLUDE@
85 GUI_TK_LIBRARY = @GUI_TK_LIBRARY@
86 GUI_TK_LINK = @GUI_TK_LINK@
90 THREADS_LINK = @THREADS_LINK@
91 EXTRA_LINK = @EXTRA_LINK@
92 JPEG_LINK = @JPEG_LINK@
93 POSIX4_LINK=@POSIX4_LINK@
97 -I$(WXBASEDIR)/src/zlib \
98 -I$(WXBASEDIR)/src/png \
99 -I$(WXBASEDIR)/src/jpeg \
101 -I$(WXBASEDIR)/include \
104 -I$(WXBASEDIR)/src/iodbc \
107 WX_LIBS = -L$(GLOBAL_LIB_DIR) $(WX_LINK)
109 GUI_TK_LIBS = $(GUI_TK_LIBRARY) $(GUI_TK_LINK) @DL_LIBRARY@
122 # Don't include $(OPENGL_LIBS) in LINK_LIBS; they
123 # can be conveniently added to BIN_LINK in Makefile.in.
125 #### End of system configuration section. ####