r6298: convert .cvsignore to svn:ignore properties
[uffi.git] / tests / Makefile
index 530655a22d27b89d12e2ec5e884b20e41502b6a4..fe0bae194a2a2cad6dde7d6022894cb1dfd1531e 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.24 2003/09/01 02:45:39 kevin Exp $
 #
 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
@@ -19,19 +19,21 @@ include ../Makefile.common
 
 .PHONY: distclean
 distclean: clean
+       rm -f $(base).dylib $(base).dylib $(base).so $(base).o
 
-
-base=c-test-fns
+base=uffi-c-test-lib
 source=$(base).c
 object=$(base).o
 shared_lib=$(base).so
 
 .PHONY: all
-all: $(shared_lib)
+all: 
+       echo "you need to specify a platform"
 
 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:
@@ -39,6 +41,10 @@ mac:
        ld -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress -o $(base).dylib $(object)
        ld -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.dylib
 
+mac-alt:
+       gcc -bundle -c $(source) -o $(base).bundle
+       ld -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.bundle
+
 solaris:
        cc -KPIC -c $(source) -o $(object)
        cc -G $(object) -o $(shared_lib)