X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=interfaces%2Fclsql-uffi%2FMakefile;h=14dfaa150578aef0ec7c91841e65cd53c1557652;hb=9eca2885c73e32b81b2ebe34e65fbdedc313c930;hp=9c474211b3a1ca91b6dff19930148a7b95fd13f8;hpb=95f40554edd65fffc81b5595a8abdf669e5dccad;p=clsql.git diff --git a/interfaces/clsql-uffi/Makefile b/interfaces/clsql-uffi/Makefile index 9c47421..14dfaa1 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.4 2002/04/03 04:06:05 kevin Exp $ +# CVS Id: $Id: Makefile,v 1.6 2002/04/07 08:48:54 kevin Exp $ # # This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg # @@ -20,15 +20,14 @@ # These variables are correct for GCC CC=gcc SHARED_CC_OPT=-fPIC -DPIC - -#SHARED_LD_OPT=-r # For FreeBSD and Solaris (CMUCL) -SHARED_LD_OPT=-Bshareable -Bdynamic # For Linux (ALL) and FreeBSD (ACL) +SHARED_LD_OPT=-shared # For Linux (ALL) and FreeBSD (ACL) +LD=gcc # Use these for Sun's C compiler and Solaris (ACL) #CC=cc #SHARED_CC_OPT=-KPIC #SHARED_LD_OPT=-G - +#LD=ld # Nothing to configure beyond this point @@ -37,16 +36,17 @@ source=$(base).c object=$(base).o shared_lib=$(base).so +.PHONY: all clean distclean + all: $(shared_lib) $(shared_lib): $(source) Makefile $(CC) ${SHARED_CC_OPT} -c $(source) -o $(object) - ld ${SHARED_LD_OPT} $(object) -o $(shared_lib) - rm $(object) + $(LD) ${SHARED_LD_OPT} $(object) -o $(shared_lib) + @rm $(object) clean: - rm -f $(object) $(shared_lib) + @rm -f $(object) $(shared_lib) *~ -realclean: clean - rm -f *~ +distclean: clean