mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 05:40:48 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/branches/dawn@3855 72102866-910b-0410-8b05-ffd578937521
120 lines
2.3 KiB
Text
120 lines
2.3 KiB
Text
#
|
|
# 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>
|
|
# Author: Ovidiu Predescu <ovidiu@net-community.com>
|
|
#
|
|
# 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@
|
|
OPTFLAG = @CFLAGS@
|
|
|
|
EXEEXT = @EXEEXT@
|
|
OEXT = .o
|
|
LIBEXT = .a
|
|
RESEXT = .res
|
|
RCEXT = .rc
|
|
|
|
LN_S = @LN_S@
|
|
|
|
LD = $(CC)
|
|
LDOUT =
|
|
LDFLAGS = @LDFLAGS@ -o
|
|
|
|
AR = ar
|
|
AROUT =
|
|
ARFLAGS = rc
|
|
RANLIB = @RANLIB@
|
|
|
|
RC = @RC@
|
|
DLLTOOL = @DLLTOOL@
|
|
|
|
YACC = yacc
|
|
BISON = bison
|
|
FLEX = flex
|
|
LEX = lex
|
|
|
|
INSTALL = @HOST_INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
TAR = tar
|
|
MKDIRS = $(GNUSTEP_MAKEFILES)/mkinstalldirs
|
|
|
|
# Version information
|
|
GNUSTEP_VERSION_DEFINE = -DGNUSTEP_VERSION=@GNUSTEP_VERSION@ \
|
|
-DGNUSTEP_MAJOR_VERSION=@GNUSTEP_MAJOR_VERSION@ \
|
|
-DGNUSTEP_MINOR_VERSION=@GNUSTEP_MINOR_VERSION@
|
|
|
|
# The default library combination
|
|
default_library_combo = @ac_cv_library_combo@
|
|
|
|
#
|
|
# Do threading stuff.
|
|
#
|
|
ifndef objc_threaded
|
|
objc_threaded:=@objc_threaded@
|
|
endif
|
|
|
|
#
|
|
# X Window System headers and libraries
|
|
#
|
|
X_INCLUDE := @X_INCLUDE@
|
|
ifeq ($(X_INCLUDE),-INONE)
|
|
X_INCLUDE=
|
|
endif
|
|
X_LIBS := @X_LIBS@
|
|
ifeq ($(X_LIBS),-LNONE)
|
|
X_LIBS=
|
|
endif
|
|
|
|
#
|
|
# 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
|
|
JPEG = @JPEG@
|
|
|
|
DPS_DEFINE=@DPS_DEFINE@
|
|
|
|
# Any user specified libs, like thread libraries
|
|
CONFIG_SYSTEM_LIBS = @LIBS@
|
|
|
|
## Local variables:
|
|
## mode: makefile
|
|
## End:
|