X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=tests%2FMakefile;h=09e6e396ecca354baed697be2baca658c00e70b6;hb=977d59fade4c0005596c6a8ec40ce42a59770751;hp=1ec75c73f9523e9b628fbf1c7b43302ac7c9c5ce;hpb=b2a3a6e6f3e5adf857ba4e2c80b8e4f8a3124a33;p=uffi.git diff --git a/tests/Makefile b/tests/Makefile index 1ec75c7..09e6e39 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -5,7 +5,7 @@ # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id: Makefile,v 1.21 2003/08/27 19:58:25 kevin Exp $ +# CVS Id: $Id$ # # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg # @@ -19,7 +19,7 @@ include ../Makefile.common .PHONY: distclean distclean: clean - + rm -f $(base).dylib $(base).dylib $(base).so $(base).o base=uffi-c-test-lib source=$(base).c @@ -27,7 +27,8 @@ 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) @@ -36,14 +37,14 @@ linux: $(source) Makefile rm $(object) mac: - gcc -bundle -c $(source) -o $(object).dylib - ld -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.dylib - -mac-old: cc -dynamic -c $(source) -o $(object) 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)