Remove old CVS $Id$ keyword
[uffi.git] / tests / Makefile
index f49a13fdc2368be508298f130c7bca083511af4f..5ed827717602a76901aff87b102c807e2644f016 100644 (file)
@@ -5,23 +5,13 @@
 #  Programer:    Kevin M. Rosenberg
 #  Date Started: Mar 2002
 #
-#  CVS Id:   $Id: Makefile,v 1.17 2002/11/29 11:10:08 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
-
-
-base=c-test-fns
+base=uffi-c-test
 source=$(base).c
 object=$(base).o
 shared_lib=$(base).so
@@ -29,23 +19,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)
+$(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)
-
-mac-bundle:
-       cc -dynamic -c $(source) -o $(object)
-       ld -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress -o $(base).bundle $(object)
-
-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