X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2FMakefile;h=09e6e396ecca354baed697be2baca658c00e70b6;hb=3df27abdd8edebdba22689f3100955d1603aa618;hp=f49a13fdc2368be508298f130c7bca083511af4f;hpb=dacb69575126d6c9aa60db0222bea8140cb1dc24;p=uffi.git diff --git a/tests/Makefile b/tests/Makefile index f49a13f..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.17 2002/11/29 11:10:08 kevin Exp $ +# CVS Id: $Id$ # # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg # @@ -19,28 +19,31 @@ 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: 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-bundle: - cc -dynamic -c $(source) -o $(object) - ld -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress -o $(base).bundle $(object) +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)