Remove old CVS $Id$ keyword
[uffi.git] / tests / Makefile
1 # FILE IDENTIFICATION
2 #
3 #  Name:         Makefile
4 #  Purpose:      Makefile for UFFI examples
5 #  Programer:    Kevin M. Rosenberg
6 #  Date Started: Mar 2002
7 #
8 # This file, part of UFFI, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
9
10 SUBDIRS=
11
12 include ../Makefile.common
13
14 base=uffi-c-test
15 source=$(base).c
16 object=$(base).o
17 shared_lib=$(base).so
18
19 .PHONY: all
20 all: $(shared_lib)
21
22 $(shared_lib): $(source) Makefile
23         BASE=$(base) OBJECT=$(object) SOURCE=$(source) SHARED_LIB=$(shared_lib) sh make.sh
24         rm $(object)
25
26 .PHONY: distclean
27 distclean: clean
28         rm -f $(base).dylib $(base).dylib $(base).so $(base).o