X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=examples%2FMakefile;h=198134b41d5e572954b2de044e5510ad0192d7fb;hb=0b1b0d4ad19bb43dd082376b26acbb784b28b0e1;hp=4edb1cb6a6374cad62fa0d5ef17fc1b27cdd4ca2;hpb=54de0ff398a996c976d053d5b56b46f0a44d3e23;p=uffi.git diff --git a/examples/Makefile b/examples/Makefile index 4edb1cb..198134b 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -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