tools-make/config.make.in

66 lines
1.4 KiB
Text
Raw Permalink Normal View History

#
# 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@
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@
# The default library combination
library_combo = @ac_cv_library_combo@
#
# X Window System headers and libraries
#
X_INCLUDE := @X_INCLUDE@
X_LIBS := @X_LIBS@