diff --git a/config/balance-defs.make b/config/balance-defs.make new file mode 100644 index 0000000000000000000000000000000000000000..3423564f02a17f6d5b2643208c8af587fd0a9dcf --- /dev/null +++ b/config/balance-defs.make @@ -0,0 +1,48 @@ +# $Id: balance-defs.make,v 1.1 1991/08/30 02:31:19 ceder Exp $ +# This file is included by all Makefiles in the LysKOM hierarchy. +# It gives default values for all variables that is normally used. +# TOPDIR and SCRIPTDIR must be set before this file is included. +# +# This version is tuned for a Sequent Balance. + +SHELL=/bin/sh +AWK = gawk +SED = /usr/bin/sed +CC = gcc -ansi +RM = /usr/gnu/bin/rm -vf +RANLIB = ranlib +TOUCHLIB = ranlib + +INCLUDEDIR = $(TOPDIR)/include +LIBDIR = $(TOPDIR)/lib +ANSIDIR = $(INCLUDEDIR)/ansi + +INCLUDES = -I$(ANSIDIR) -I$(INCLUDEDIR) +OPTIMIZE-FLAGS = -O +MISC-CFLAGS = -g -Wall +PIPE = -pipe + +# -h flag makes NULL pointer references generate runtime errors +LDFLAGS = -h -L$(LIBDIR) + +CFLAGS = $(INCLUDES) $(OPTIMIZE-FLAGS) $(MISC-CFLAGS) $(PIPE) $(TARGET) + +# LysKOM executables that the typical user don't use go here. +# (The server, dbck, et c) + +LYSKOMSYSBIN = /usr/lyskom/bin + +# User executables (such as lyskom, kompost et c) + +LYSKOMUSRBIN = /usr/local/bin + + + +GENERIC-CLEAN = *~ *.o lib*.a dependencies core TAGS temp-Makefile \ + temp-?-Makefile + +EXPORTS = + +# The Makefiles also dependes on the variables +# AR, ARFLAGS +# that are automatically set by GNU Make. diff --git a/config/sun4os4-defs.make b/config/sun4os4-defs.make new file mode 100644 index 0000000000000000000000000000000000000000..054f2cbd0c4a5921974dc1ab9f5ac52b29a9a9c2 --- /dev/null +++ b/config/sun4os4-defs.make @@ -0,0 +1,49 @@ +# $Id: sun4os4-defs.make,v 1.1 1991/08/30 02:31:17 ceder Exp $ +# This file is included by all Makefiles in the LysKOM hierarchy. +# It gives default values for all variables that is normally used. +# TOPDIR and SCRIPTDIR must be set before this file is included. +# +# This version is tuned for a Sparc running SunOS 4.1.1 and a lot +# of Gnu utilities. + +SHELL=/bin/sh +AWK = gawk +SED = /usr/bin/sed +CC = gcc -ansi +RM = /usr/gnu/bin/rm -vf +RANLIB = ranlib +TOUCHLIB = ranlib -t + +INCLUDEDIR = $(TOPDIR)/include +LIBDIR = $(TOPDIR)/lib +ANSIDIR = $(INCLUDEDIR)/ansi + +INCLUDES = -I$(ANSIDIR) -I$(INCLUDEDIR) +OPTIMIZE-FLAGS = -O +MISC-CFLAGS = -g -Wall +PIPE = -pipe + +# -h flag makes NULL pointer references generate runtime errors +LDFLAGS = -h -L$(LIBDIR) + +CFLAGS = $(INCLUDES) $(OPTIMIZE-FLAGS) $(MISC-CFLAGS) $(PIPE) $(TARGET) + +# LysKOM executables that the typical user don't use go here. +# (The server, dbck, et c) + +LYSKOMSYSBIN = /usr/lyskom/bin + +# User executables (such as lyskom, kompost et c) + +LYSKOMUSRBIN = /usr/local/bin + + + +GENERIC-CLEAN = *~ *.o lib*.a dependencies core TAGS temp-Makefile \ + temp-?-Makefile + +EXPORTS = + +# The Makefiles also dependes on the variables +# AR, ARFLAGS +# that are automatically set by GNU Make.