80cb83bef2
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
124 lines
2.9 KiB
Plaintext
124 lines
2.9 KiB
Plaintext
# Makefile for Autoconf.
|
|
# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
# any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
# 02111-1307, USA.
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
GLOBAL_LIB_DIR = $(WXBASEDIR)/lib/$(OS)
|
|
GLOBAL_BIN_DIR = $(WXBASEDIR)/bin/$(OS)
|
|
|
|
# define toolkit to use
|
|
TOOLKIT_DEF = -D@TOOLKIT_DEF@
|
|
|
|
# general compiler stuff
|
|
OPTIMISE = @OPTIMISE@
|
|
PROFILE = @PROFILE@
|
|
DEBUG = @WXDEBUG@ @WXDEBUG_DEFINE@
|
|
|
|
# c-compiler stuff
|
|
CC = @CC@
|
|
CPP = @CPP@
|
|
CPPFLAGS=@CPPFLAGS@
|
|
CFLAGS = @CFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG)
|
|
|
|
# c++-compiler stuff
|
|
CXX = @CXX@
|
|
CXXFLAGS = @CXXFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG)
|
|
CXXCPP = @CXXCPP@
|
|
|
|
# shared compile stuff
|
|
PICFLAGS = @PICFLAGS@
|
|
CREATE_SHARED = @CREATE_SHARED@
|
|
|
|
# other stuff
|
|
RM = rm -f
|
|
LEX = @LEX@
|
|
LEXLIB = @LEXLIB@
|
|
YACC = @YACC@
|
|
RANLIB = @RANLIB@
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
AWK = @AWK@
|
|
LN_S = @LN_S@
|
|
STRIP = @STRIP@
|
|
CJPEG_PROG =
|
|
CONVERT_PATH = /usr/bin/X11
|
|
CONVERT_PROG = /usr/bin/X11/convert
|
|
DJPEG_PROG =
|
|
GIFTOPNM_PROG =
|
|
NETPBM_PATH =
|
|
|
|
# Base directories for installation
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
|
|
# Directory in which to install headers
|
|
includedir = @includedir@
|
|
|
|
# Directory in which to install library files
|
|
libdir = @libdir@
|
|
|
|
# Directory in which to install executable files
|
|
bindir = @bindir@
|
|
|
|
X_CFLAGS = @X_CFLAGS@
|
|
X_LIBS = @X_LIBS@
|
|
X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
|
X_PRE_LIBS = @X_PRE_LIBS@
|
|
|
|
GUI_TK_INCLUDE = @GUI_TK_INCLUDE@
|
|
GUI_TK_LIBRARY = @GUI_TK_LIBRARY@
|
|
GUI_TK_LINK = @GUI_TK_LINK@
|
|
|
|
WX_LINK = @WX_LINK@
|
|
|
|
THREADS_LINK = @THREADS_LINK@
|
|
EXTRA_LINK = @EXTRA_LINK@
|
|
JPEG_LINK = @JPEG_LINK@
|
|
POSIX4_LINK=@POSIX4_LINK@
|
|
|
|
# INCLUDES
|
|
WX_INCLUDES = \
|
|
$(TOOLKIT_DEF) \
|
|
-I$(WXBASEDIR)/include \
|
|
-I. \
|
|
$(GUI_TK_INCLUDE) \
|
|
-I$(WXBASEDIR)/src/zlib \
|
|
-I$(WXBASEDIR)/src/iodbc \
|
|
$(X_CFLAGS)
|
|
|
|
WX_LIBS = -L$(GLOBAL_LIB_DIR) $(WX_LINK)
|
|
|
|
GUI_TK_LIBS = $(GUI_TK_LIBRARY) $(GUI_TK_LINK) @DL_LIBRARY@
|
|
|
|
LINK = $(CXX) -o $@
|
|
LINK_LIBS= \
|
|
$(WX_LIBS) \
|
|
$(GUI_TK_LIBS) \
|
|
$(X_EXTRA_LIBS) \
|
|
$(X_PRE_LIBS) \
|
|
$(THREADS_LINK) \
|
|
$(POSIX4_LINK) \
|
|
$(EXTRA_LINK) \
|
|
$(JPEG_LINK)
|
|
|
|
# Don't include $(OPENGL_LIBS) in LINK_LIBS; they
|
|
# can be conveniently added to BIN_LINK in Makefile.in.
|
|
|
|
#### End of system configuration section. ####
|