r1595: Updated C test functions
[uffi.git] / examples / Makefile
index 4edb1cb6a6374cad62fa0d5ef17fc1b27cdd4ca2..198134b41d5e572954b2de044e5510ad0192d7fb 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.2 2002/03/21 02:41:30 kevin Exp $
 #
 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
@@ -29,11 +29,11 @@ SHARED_LD_OPT=-shared
 
 all: lib 
 
-lib: c-test-lib.so
+lib: c-test-fns.so
 
-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
+c-test-fns.so: c-test-fns.c 
+       ${CC} ${SHARED_CC_OPT} -c c-test-fns.c -o c-test-fns.o
+       ld ${SHARED_LD_OPT} c-test-fns.o -o c-test-fns.so
 
 clean:
        rm -f *.o *.so