1997-09-16 01:07:48 +00:00
|
|
|
#
|
|
|
|
# config.make.in
|
|
|
|
#
|
|
|
|
# All of the settings required by the makefile package
|
|
|
|
# that are determined by configure.
|
|
|
|
#
|
|
|
|
# Copyright (C) 1997 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Author: Scott Christley <scottc@net-community.com>
|
1997-10-06 03:58:06 +00:00
|
|
|
# Author: Ovidiu Predescu <ovidiu@net-community.com>
|
1997-09-16 01:07:48 +00:00
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Makefile Package.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public
|
|
|
|
# License along with this library; see the file COPYING.LIB.
|
|
|
|
# If not, write to the Free Software Foundation,
|
|
|
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
#
|
|
|
|
# Binary and compile tools
|
|
|
|
#
|
|
|
|
CC = @CC@
|
1999-03-01 18:29:15 +00:00
|
|
|
OPTFLAG = @CFLAGS@
|
1997-09-16 01:07:48 +00:00
|
|
|
|
1998-12-07 16:54:26 +00:00
|
|
|
EXEEXT = @EXEEXT@
|
1997-09-16 01:07:48 +00:00
|
|
|
OEXT = .o
|
|
|
|
LIBEXT = .a
|
|
|
|
RESEXT = .res
|
|
|
|
RCEXT = .rc
|
|
|
|
|
|
|
|
LN_S = @LN_S@
|
|
|
|
|
1997-10-03 21:12:56 +00:00
|
|
|
LD = $(CC)
|
1997-09-16 01:07:48 +00:00
|
|
|
LDOUT =
|
|
|
|
LDFLAGS = @LDFLAGS@ -o
|
|
|
|
|
|
|
|
AR = ar
|
|
|
|
AROUT =
|
|
|
|
ARFLAGS = rc
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
|
|
|
|
RC = @RC@
|
|
|
|
DLLTOOL = @DLLTOOL@
|
|
|
|
|
1997-10-14 17:31:18 +00:00
|
|
|
YACC = yacc
|
|
|
|
BISON = bison
|
|
|
|
FLEX = flex
|
|
|
|
LEX = lex
|
|
|
|
|
1997-10-03 22:02:27 +00:00
|
|
|
INSTALL = @HOST_INSTALL@
|
1997-10-03 21:12:56 +00:00
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
1997-11-13 03:18:16 +00:00
|
|
|
TAR = tar
|
1998-12-20 21:27:47 +00:00
|
|
|
MKDIRS = $(GNUSTEP_MAKEFILES)/mkinstalldirs
|
1997-10-03 21:12:56 +00:00
|
|
|
|
1999-02-23 05:20:40 +00:00
|
|
|
# Version information
|
|
|
|
GNUSTEP_VERSION_DEFINE = -DGNUSTEP_VERSION=@GNUSTEP_VERSION@ \
|
|
|
|
-DGNUSTEP_MAJOR_VERSION=@GNUSTEP_MAJOR_VERSION@ \
|
|
|
|
-DGNUSTEP_MINOR_VERSION=@GNUSTEP_MINOR_VERSION@
|
|
|
|
|
1997-10-02 01:29:16 +00:00
|
|
|
# The default library combination
|
1997-11-14 19:24:44 +00:00
|
|
|
default_library_combo = @ac_cv_library_combo@
|
1997-10-02 01:29:16 +00:00
|
|
|
|
1998-11-11 23:05:50 +00:00
|
|
|
#
|
|
|
|
# Do threading stuff.
|
|
|
|
#
|
|
|
|
ifndef objc_threaded
|
|
|
|
objc_threaded:=@objc_threaded@
|
|
|
|
endif
|
1998-09-03 14:35:49 +00:00
|
|
|
|
1997-09-18 01:36:07 +00:00
|
|
|
#
|
|
|
|
# X Window System headers and libraries
|
|
|
|
#
|
|
|
|
X_INCLUDE := @X_INCLUDE@
|
1998-01-11 21:59:31 +00:00
|
|
|
ifeq ($(X_INCLUDE),-INONE)
|
|
|
|
X_INCLUDE=
|
|
|
|
endif
|
1997-09-18 01:36:07 +00:00
|
|
|
X_LIBS := @X_LIBS@
|
1998-01-11 21:59:31 +00:00
|
|
|
ifeq ($(X_LIBS),-LNONE)
|
|
|
|
X_LIBS=
|
|
|
|
endif
|
1997-10-30 22:43:44 +00:00
|
|
|
|
1999-02-25 17:54:19 +00:00
|
|
|
#
|
|
|
|
# Tiff header and library
|
|
|
|
#
|
|
|
|
TIFF_INCLUDE := @TIFF_INCLUDE@
|
|
|
|
ifeq ($(TIFF_INCLUDE),-INONE)
|
|
|
|
TIFF_INCLUDE=
|
|
|
|
endif
|
|
|
|
TIFF_LIB := @TIFF_LIB@
|
|
|
|
ifeq ($(TIFF_LIB),-LNONE)
|
|
|
|
TIFF_LIB=
|
|
|
|
endif
|
|
|
|
|
|
|
|
#
|
|
|
|
# Jpeg header and library
|
|
|
|
#
|
|
|
|
JPEG_INCLUDE := @JPEG_INCLUDE@
|
|
|
|
ifeq ($(JPEG_INCLUDE),-INONE)
|
|
|
|
JPEG_INCLUDE=
|
|
|
|
endif
|
|
|
|
JPEG_LIB := @JPEG_LIB@
|
|
|
|
ifeq ($(JPEG_LIB),-LNONE)
|
|
|
|
JPEG_LIB=
|
|
|
|
endif
|
1999-03-04 22:44:30 +00:00
|
|
|
JPEG = @JPEG@
|
1999-02-25 17:54:19 +00:00
|
|
|
|
1998-09-03 18:50:11 +00:00
|
|
|
DPS_DEFINE=@DPS_DEFINE@
|
|
|
|
|
1997-10-30 22:43:44 +00:00
|
|
|
# Any user specified libs, like thread libraries
|
|
|
|
CONFIG_SYSTEM_LIBS = @LIBS@
|
1998-05-28 06:56:11 +00:00
|
|
|
|
|
|
|
## Local variables:
|
|
|
|
## mode: makefile
|
|
|
|
## End:
|