r1718: *** empty log message ***
[uffi.git] / examples / Makefile
index 4edb1cb6a6374cad62fa0d5ef17fc1b27cdd4ca2..d65deda0ce4684ccfd3c6b9b992f002e1bbf1fd2 100644 (file)
@@ -5,7 +5,7 @@
 #  Programer:    Kevin M. Rosenberg
 #  Date Started: Mar 2002
 #
-#  CVS Id:   $Id: Makefile,v 1.1 2002/03/20 04:56:52 kevin Exp $
+#  CVS Id:   $Id: Makefile,v 1.5 2002/04/01 20:33:45 kevin Exp $
 #
 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
 # as governed by the terms of the Lisp Lesser GNU Public License
 # (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
 CC=gcc
 SHARED_CC_OPT=-fpic
-SHARED_LD_OPT=-shared
 
-# If you are using Solaris, these are the correct values
+SHARED_LD_OPT=-shared  # For Linux
+#SHARED_LD_OPT=-r # For FreeBSD and Solaris
+
+# If you are using Solaris with Sun's CC, these are the correct values
 # for creating a shared library
 #CC=cc
 #SHARED_CC_OPT=-KPIC
 #SHARED_LD_OPT=-G
 
+
+base=c-test-fns
+
 # Nothing to configure beyond this point
+source=$(base).c
+object=$(base).o
+shared_lib=$(base).so
+static_lib=$(base).a
 
-all: lib 
+all: $(shared_lib)
 
-lib: c-test-lib.so
+$(shared_lib): $(source)
+       $(CC) ${SHARED_CC_OPT} -c $(source) -o $(object)
+       ld ${SHARED_LD_OPT} $(object) -o $(shared_lib)
+       $(AR) r $(static_lib) $(object)
+       rm $(object)
 
-c-test-lib.so: c-test-lib.c 
-       ${CC} ${SHARED_CC_OPT} -c c-test-lib.c -o c-test-lib.o
-       ld ${SHARED_LD_OPT} c-test-lib.o -o c-test-lib.so
+$(static_lib): $(source)
+       ${CC} -c $(source) -o $(object)
+       $(AR) r $(static_lib) $(object)
+       rm $(object)
 
 clean:
-       rm -f *.o *.so 
+       rm -f $(object) $(static_lib) $(shared_lib)
 
-realclean:
-       rm -f *.o *.so *~
+realclean: clean
+       rm -f *~