X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=interfaces%2Fclsql-uffi%2FMakefile;h=897001d033ac8e04567fc7d97b1c3d73a9ef354a;hb=2359c743fa126e65514454a7996e025f139a8241;hp=8bc8436c7e9d2ad93e2ea0086fc1798318e30bf3;hpb=14e7eb14df86493ad043f11b2dd142d329e415be;p=clsql.git diff --git a/interfaces/clsql-uffi/Makefile b/interfaces/clsql-uffi/Makefile index 8bc8436..897001d 100644 --- a/interfaces/clsql-uffi/Makefile +++ b/interfaces/clsql-uffi/Makefile @@ -7,7 +7,7 @@ # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id: Makefile,v 1.1 2002/03/27 07:58:42 kevin Exp $ +# CVS Id: $Id: Makefile,v 1.2 2002/04/01 05:27:55 kevin Exp $ # # This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg # @@ -16,6 +16,7 @@ # (http://opensource.franz.com/preamble.html), also known as the LLGPL. ########################################################################### +AR=ar # These variables are correct for GCC # you'll need to modify these for other compilers @@ -32,20 +33,27 @@ SHARED_LD_OPT=-shared # Nothing to configure beyond this point BASE=clsql-uffi -SRC=${BASE}.c -OBJECT=${BASE}.o -LIB=${BASE}.so +SRC=$(BASE).c +OBJECT=$(BASE).o +SHARED=$(BASE).so +STATIC=$(BASE).a -all: ${LIB} +all: $(SHARED) $(STATIC) -${LIB}: ${SRC} - ${CC} ${SHARED_CC_OPT} -c ${SRC} -o ${OBJECT} - ld ${SHARED_LD_OPT} ${OBJECT} -o ${LIB} - @rm ${OBJECT} +$(SHARED): $(SRC) + $(CC) $(SHARED_CC_OPT) -c $(SRC) -o $(OBJECT) + ld $(SHARED_LD_OPT) $(OBJECT) -o $(SHARED) + @rm $(OBJECT) + +$(STATIC): $(SRC) + $(CC) -c $(SRC) -o $(OBJECT) + $(AR) r $(STATIC) $(OBJECT) + @rm $(OBJECT) clean: - rm -f ${LIB} + rm -f $(SHARED) $(STATIC) realclean: clean rm -f *~ +