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@
|
|
|
|
|
|
|
|
EXEEXT =
|
|
|
|
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
|
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
|
|
|
|
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
|
|
|
|
|
|
|
# Any user specified libs, like thread libraries
|
|
|
|
CONFIG_SYSTEM_LIBS = @LIBS@
|
1998-05-28 06:56:11 +00:00
|
|
|
|
|
|
|
## Local variables:
|
|
|
|
## mode: makefile
|
|
|
|
## End:
|