From 5319cb7b26cfcea030617ec471e1204166a231ad Mon Sep 17 00:00:00 2001
From: Per Cederqvist <ceder@lysator.liu.se>
Date: Fri, 30 Aug 1991 02:31:19 +0000
Subject: [PATCH] Initial revision

---
 config/balance-defs.make | 48 +++++++++++++++++++++++++++++++++++++++
 config/sun4os4-defs.make | 49 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 97 insertions(+)
 create mode 100644 config/balance-defs.make
 create mode 100644 config/sun4os4-defs.make

diff --git a/config/balance-defs.make b/config/balance-defs.make
new file mode 100644
index 000000000..3423564f0
--- /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 000000000..054f2cbd0
--- /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.
-- 
GitLab