diff --git a/scripts/Makefile b/scripts/Makefile index b23b3f02449b28289324f4381e8b007d2f1bf017..da83a03a3f4b80b4ba779d1695e55b84f17743d6 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -1,6 +1,7 @@ all:; depend:; install:; + clean: rm -vf *~ core diff --git a/scripts/Parallell-depend.make b/scripts/Parallell-depend.make index b3e9f6af9951da44cf66e6064ed14ca69ff12ae9..7adcc765af16998cdb0a275d02eedefa5c19b16a 100644 --- a/scripts/Parallell-depend.make +++ b/scripts/Parallell-depend.make @@ -3,24 +3,24 @@ depend: temp-A-Makefile rm -f dependencies - cat temp-?-Makefile >dependencies + cat temp-?-Makefile >dependencies rm temp-?-Makefile temp-?-files echo depend ready. temp-A-Makefile: c-indexes specials - -$(CC) -M ${TARGET} ${INCLUDES} `cat temp-A-files` >temp-A-Makefile + -$(CC) -M $(CFLAGS) `cat temp-A-files` >temp-A-Makefile temp-B-Makefile: c-indexes specials - -$(CC) -M ${TARGET} ${INCLUDES} `cat temp-B-files` >temp-B-Makefile + -$(CC) -M ${CFLAGS} `cat temp-B-files` >temp-B-Makefile temp-C-Makefile: c-indexes specials - -$(CC) -M ${TARGET} ${INCLUDES} `cat temp-C-files` >temp-C-Makefile + -$(CC) -M ${CFLAGS} `cat temp-C-files` >temp-C-Makefile temp-D-Makefile: c-indexes specials - -$(CC) -M ${TARGET} ${INCLUDES} `cat temp-D-files` >temp-D-Makefile + -$(CC) -M ${CFLAGS} `cat temp-D-files` >temp-D-Makefile temp-E-Makefile: c-indexes specials - -$(CC) -M ${TARGET} ${INCLUDES} `cat temp-E-files` >temp-E-Makefile + -$(CC) -M ${CFLAGS} `cat temp-E-files` >temp-E-Makefile c-indexes: ls *.c|${AWK} '{ a[i++] = $$1; } \ diff --git a/scripts/import.make b/scripts/import.make index 2e39c9213cac0eb6d9ef6076cc4193733c1d74e7..4264ce428cab03ccd12ec3ee6ae708b117eb382a 100644 --- a/scripts/import.make +++ b/scripts/import.make @@ -7,61 +7,38 @@ # ceder is guilty. # -ifndef SHELL SHELL=/bin/sh -endif - -ifndef INCLUDEDIR -INCLUDEDIR = $(TOPDIR)/include -endif - -ifndef LIBDIR -LIBDIR = $(TOPDIR)/lib -endif - -ifndef ANSIDIR -ANSIDIR = $(INCLUDEDIR)/ansi -endif - -# Used programs. - -ifndef AWK AWK = gawk -endif - -ifndef SED SED = /usr/bin/sed -endif - -ifndef CC -CC = /usr/gnu/bin/gcc -ansi -endif - -ifndef RM +CC = gcc -ansi RM = /usr/gnu/bin/rm -vf -endif -# Flags to the C compiler +INCLUDEDIR = $(TOPDIR)/include +LIBDIR = $(TOPDIR)/lib +ANSIDIR = $(INCLUDEDIR)/ansi -ifndef INCLUDES INCLUDES = -I$(ANSIDIR) -I$(INCLUDEDIR) -endif - -ifndef OPTIMIZE-FLAGS OPTIMIZE-FLAGS = -O -endif - -ifndef MISC-CFLAGS MISC-CFLAGS = -g -Wall -endif +PIPE = -pipe -ifndef LDFLAGS # -h flag makes NULL pointer references generate runtime errors LDFLAGS = -h -L$(LIBDIR) -endif - -# Force CFLAGS to always follow the settings of INCLUDES, -# OPTIMIZE-FLAGS and MISC-CFLAGS. -# Set PIPE=-pipe if you want to. 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 + +EXPORT = CC="$CC" SHELL="$SHELL" AWK="$AWK" SED="$SED" CC="$CC" RM="$RM" \ + INCLUDEDIR="$INCLUDEDIR" LIBDIR="$LIBDIR" ANSIDIR="$ANSIDIR" \ + INCLUDES="$INCLUDES" OPTIMIZE-FLAGS="$OPTIMIZE-FLAGS" \ + MISC-CFLAGS="$MISC-CFLAGS" PIPE="$PIPE" LDFLAGS="$LDFLAGS" \ + CFLAGS="$CFLAGS" LYSKOMSYSBIN="$LYSKOMSYSBIN" \ + LYSKOMUSRBIN="$LYSKOMUSRBIN"