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.
|
|
|
|
|
2001-04-25 11:02:13 +00:00
|
|
|
#
|
|
|
|
# The GNUstep Make Package Version
|
|
|
|
#
|
|
|
|
GNUSTEP_MAKE_MAJOR_VERSION=@GNUSTEP_MAKE_MAJOR_VERSION@
|
|
|
|
GNUSTEP_MAKE_MINOR_VERSION=@GNUSTEP_MAKE_MINOR_VERSION@
|
|
|
|
GNUSTEP_MAKE_SUBMINOR_VERSION=@GNUSTEP_MAKE_SUBMINOR_VERSION@
|
|
|
|
GNUSTEP_MAKE_VERSION=@GNUSTEP_MAKE_VERSION@
|
|
|
|
|
1997-09-16 01:07:48 +00:00
|
|
|
#
|
|
|
|
# Binary and compile tools
|
|
|
|
#
|
1999-04-02 05:31:35 +00:00
|
|
|
CC = @CC@
|
1999-03-02 08:58:30 +00:00
|
|
|
OPTFLAG = @CFLAGS@
|
2001-01-08 21:45:31 +00:00
|
|
|
CPPFLAGS = @FORCE_CPPFLAGS@
|
2002-02-27 13:41:10 +00:00
|
|
|
OBJC_NO_IMPORT_FLAGS = @OBJC_NO_IMPORT_FLAGS@
|
1997-09-16 01:07:48 +00:00
|
|
|
|
1998-12-07 16:54:26 +00:00
|
|
|
EXEEXT = @EXEEXT@
|
2001-03-15 16:20:41 +00:00
|
|
|
OEXT = .@OBJEXT@
|
1997-09-16 01:07:48 +00:00
|
|
|
LIBEXT = .a
|
|
|
|
|
|
|
|
LN_S = @LN_S@
|
|
|
|
|
2002-03-05 15:03:12 +00:00
|
|
|
# This is the best we can do given the current autoconf, which only
|
|
|
|
# returns LN_S
|
|
|
|
ifeq ($(LN_S), ln -s)
|
|
|
|
HAS_LN_S = yes
|
|
|
|
endif
|
|
|
|
|
1997-10-03 21:12:56 +00:00
|
|
|
LD = $(CC)
|
1997-09-16 01:07:48 +00:00
|
|
|
LDOUT =
|
1999-09-15 02:41:46 +00:00
|
|
|
LDFLAGS = @LDFLAGS@
|
1997-09-16 01:07:48 +00:00
|
|
|
|
1999-04-02 05:31:35 +00:00
|
|
|
AR = @AR@
|
|
|
|
AROUT =
|
1997-09-16 01:07:48 +00:00
|
|
|
ARFLAGS = rc
|
1999-04-02 05:31:35 +00:00
|
|
|
RANLIB = @RANLIB@
|
1997-09-16 01:07:48 +00:00
|
|
|
|
|
|
|
DLLTOOL = @DLLTOOL@
|
|
|
|
|
2002-03-28 15:32:09 +00:00
|
|
|
# NB: These variables are defined here only so that they can be
|
|
|
|
# overridden on the command line (so you can type 'AWK=mawk make' to
|
|
|
|
# use a different awk for that particular run of make). We should
|
|
|
|
# *NOT* set them to the full path of these tools at configure time,
|
|
|
|
# because otherwise when you change/update the tools you would need to
|
|
|
|
# reconfigure and reinstall gnustep-make! We can normally assume that
|
|
|
|
# typing 'awk' and 'sed' on the command line cause the preferred awk
|
|
|
|
# and sed programs on the system to be used. Hardcoding the full path
|
|
|
|
# (or the name) of the specific awk or sed program on this sytem here
|
|
|
|
# would make it lot more inflexible. In other words, the following
|
|
|
|
# definitions should remain like in 'AWK = awk' on all systems.
|
|
|
|
AWK = awk
|
|
|
|
SED = sed
|
1999-04-02 05:31:35 +00:00
|
|
|
YACC = yacc
|
|
|
|
BISON = bison
|
|
|
|
FLEX = flex
|
|
|
|
LEX = lex
|
2002-03-28 15:32:09 +00:00
|
|
|
CHOWN = chown
|
|
|
|
STRIP = strip
|
1997-10-14 17:31:18 +00:00
|
|
|
|
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@
|
2000-08-30 15:20:30 +00:00
|
|
|
TAR = @TAR@
|
1998-12-20 21:27:47 +00:00
|
|
|
MKDIRS = $(GNUSTEP_MAKEFILES)/mkinstalldirs
|
1997-10-03 21:12:56 +00:00
|
|
|
|
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
|
|
|
|
2001-04-13 19:49:16 +00:00
|
|
|
# Backend bundle
|
|
|
|
BACKEND_BUNDLE=@BACKEND_BUNDLE@
|
|
|
|
|
1998-11-11 23:05:50 +00:00
|
|
|
#
|
|
|
|
# Do threading stuff.
|
|
|
|
#
|
2001-01-19 11:49:20 +00:00
|
|
|
# Warning - the base library's configure.in will extract the thread
|
|
|
|
# flags from the following line using grep/sed - so if you change the
|
|
|
|
# following lines you *need* to update the base library configure.in
|
|
|
|
# too.
|
|
|
|
#
|
1998-11-11 23:05:50 +00:00
|
|
|
ifndef objc_threaded
|
|
|
|
objc_threaded:=@objc_threaded@
|
|
|
|
endif
|
1998-09-03 14:35:49 +00:00
|
|
|
|
1997-10-30 22:43:44 +00:00
|
|
|
# Any user specified libs, like thread libraries
|
2001-01-08 21:45:31 +00:00
|
|
|
CONFIG_SYSTEM_INCL = @CPPFLAGS@
|
1997-10-30 22:43:44 +00:00
|
|
|
CONFIG_SYSTEM_LIBS = @LIBS@
|
2001-01-29 19:35:04 +00:00
|
|
|
CONFIG_SYSTEM_DEFS =
|
1998-05-28 06:56:11 +00:00
|
|
|
|
2001-11-22 13:31:51 +00:00
|
|
|
#
|
|
|
|
# Whether the C/ObjC/C++ compiler supports auto-dependencies
|
|
|
|
# (generating dependencies of the object files from the include files
|
|
|
|
# used to compile them) via -MMD -MP flags
|
|
|
|
#
|
|
|
|
AUTO_DEPENDENCIES = @AUTO_DEPENDENCIES@
|
|
|
|
|
1998-05-28 06:56:11 +00:00
|
|
|
## Local variables:
|
|
|
|
## mode: makefile
|
|
|
|
## End:
|