Remove old CVS $Id$ keyword
[uffi.git] / tests / Makefile
index fe0bae194a2a2cad6dde7d6022894cb1dfd1531e..5ed827717602a76901aff87b102c807e2644f016 100644 (file)
@@ -5,50 +5,24 @@
 #  Programer:    Kevin M. Rosenberg
 #  Date Started: Mar 2002
 #
-#  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
-#
-# 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-2010 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