r4703: *** empty log message ***
[uffi.git] / tests / Makefile
index 530655a22d27b89d12e2ec5e884b20e41502b6a4..88fda03b0f16f56d8e42148fe0b2fda71951c31e 100644 (file)
@@ -5,7 +5,7 @@
 #  Programer:    Kevin M. Rosenberg
 #  Date Started: Mar 2002
 #
-#  CVS Id:   $Id: Makefile,v 1.18 2002/12/03 06:58:39 kevin Exp $
+#  CVS Id:   $Id: Makefile,v 1.20 2003/04/29 14:08:02 kevin Exp $
 #
 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
@@ -21,7 +21,7 @@ include ../Makefile.common
 distclean: clean
 
 
-base=c-test-fns
+base=uffi-c-test-lib
 source=$(base).c
 object=$(base).o
 shared_lib=$(base).so
@@ -32,6 +32,7 @@ all: $(shared_lib)
 linux: $(source) Makefile
        gcc -fPIC -DPIC -c $(source) -o $(object)
        gcc -shared $(object) -o $(shared_lib)
+       #gcc -shared -Wl,-soname,uffi-c-test-lib $(object) -o $(shared_lib)
        rm $(object)
 
 mac: