X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2FMakefile;h=f25dc7bc3856f71b602f51e73ad127708f1e54c8;hb=6857c87b747c4d9816788432672280160d1df773;hp=1ec75c73f9523e9b628fbf1c7b43302ac7c9c5ce;hpb=b2a3a6e6f3e5adf857ba4e2c80b8e4f8a3124a33;p=uffi.git diff --git a/tests/Makefile b/tests/Makefile index 1ec75c7..f25dc7b 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -5,23 +5,15 @@ # 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 -# -# 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 - - -base=uffi-c-test-lib +base=uffi-c-test source=$(base).c object=$(base).o shared_lib=$(base).so @@ -29,25 +21,10 @@ shared_lib=$(base).so .PHONY: all 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: - 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 - -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