X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2FMakefile;h=f25dc7bc3856f71b602f51e73ad127708f1e54c8;hb=6857c87b747c4d9816788432672280160d1df773;hp=09e6e396ecca354baed697be2baca658c00e70b6;hpb=ebedde4e67b858b1f65c5eb4dc7bc45978ed1e40;p=uffi.git diff --git a/tests/Makefile b/tests/Makefile index 09e6e39..f25dc7b 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -7,48 +7,24 @@ # # CVS Id: $Id$ # -# This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg -# -# UFFI users are granted the rights to distribute and use this software -# as governed by the terms of the Lisp Lesser GNU Public License -# (http://opensource.franz.com/preamble.html), also known as the LLGPL. +# This file, part of UFFI, is Copyright (c) 2002-2005 by Kevin M. Rosenberg -SUBDIRS:= +SUBDIRS= include ../Makefile.common -.PHONY: distclean -distclean: clean - rm -f $(base).dylib $(base).dylib $(base).so $(base).o - -base=uffi-c-test-lib +base=uffi-c-test source=$(base).c object=$(base).o shared_lib=$(base).so .PHONY: all -all: - echo "you need to specify a platform" +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) +$(shared_lib): $(source) Makefile + BASE=$(base) OBJECT=$(object) SOURCE=$(source) SHARED_LIB=$(shared_lib) sh make.sh 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-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) - -aix-acl: - gcc -c -D_BSD -D_NO_PROTO -D_NONSTD_TYPES -D_MBI=void $(source) - make_shared -o $(shared_lib) $(object) +.PHONY: distclean +distclean: clean + rm -f $(base).dylib $(base).dylib $(base).so $(base).o