# # make.config.in - Master makefile configuration for netboot # # Copyright (C) 2003 Gero Kuhlmann # # This program 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 # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # # $Id: make.config.in,v 1.2 2003/03/30 10:02:17 gkminix Exp $ # # Major installation directory names prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ sbindir = @sbindir@ mandir = @mandir@ sysconfdir = @sysconfdir@ statedir = @localstatedir@ libdir = @libdir@ datadir = @datadir@ # Additional netboot installation directory and file names nblibdir = @nblibdir@ nbdatadir = @nbdatadir@ nbutildir = $(nblibdir)/utils nbbindir = $(nbdatadir)/binaries nbnetdrvdir = $(nbdatadir)/netdrvr nbconfig = @CONFIGFILE@ # Source directories TOPDIR = @abs_top_srcdir@ ROMDIR = $(TOPDIR)/bootrom INCDIR = $(TOPDIR)/include MISCDIR = $(TOPDIR)/misc LIBDIR = $(TOPDIR)/nblib I386DIR = $(TOPDIR)/i386 SCRIPTDIR = $(MISCDIR)/ldscripts CONFSUBDIRS = @SUBDIRS@ # Make program to be used @SET_MAKE@ # Define host program path names CC = @CC@ CPP = @CPP@ YACC = @YACC@ LEX = @LEX@ # Define target program path names GCC86 = @GCC86@ CPP86 = @CPP86@ GAS86 = @GAS86@ GLD86 = @GLD86@ GASP = @GASP@ # Define utility program path names AR = @AR@ RANLIB = @RANLIB@ MD5SUM = @MD5SUM@ AWK = @AWK@ INSTALL = @INSTALL@ # Define flags for the host environment CDEBUG = # -g INCLUDE = -I. -I$(INCDIR) CFLAGS = @CFLAGS@ $(CDEBUG) @DEFS@ $(INCLUDE) LDFLAGS = -s LIBS = -L$(LIBDIR) -lnb @LIBS@ YFLAGS = -d LFLAGS = # Define the root file names for LEX and YACC YROOT = y.tab LROOT = @LEX_OUTPUT_ROOT@ # Define flags for the target environment GNU16BIT = @GNU16BIT@ GASPFLAGS = -c '\#' CPP86INCS = -nostdinc -I$(INCDIR) -I$(I386DIR) CPP86FLAGS = -x assembler-with-cpp -traditional -undef -P @DEFS@ GLD86LIBS = -L$(I386DIR) -li386 GLD86FLAGS = @GLD86_TARGET_FLAGS@ -nostdlib