r1807: *** empty log message ***
[uffi.git] / examples / 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 #  CVS Id:   $Id: Makefile,v 1.14 2002/04/28 02:28:45 kevin Exp $
9 #
10 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
11 #
12 # UFFI users are granted the rights to distribute and use this software
13 # as governed by the terms of the Lisp Lesser GNU Public License
14 # (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15
16 SUBDIRS:=
17
18 include ../Makefile.common
19
20 .PHONY: distclean
21 distclean: clean
22
23 # GCC Section
24 CC=gcc
25 SHARED_CC_OPT=-fPIC -DPIC
26
27 SHARED_LD_OPT=-shared  # For Linux (ALL) and FreeBSD (ACL)
28
29 # For MacOSX (ACL)
30 #SHARED_CC_OPT=-dynamic
31 #SHARED_LD_OPT=-bundle /usr/lib/bundle1.o -undefined suppress # -o foo.dylib foo.o
32
33 # Use these for Sun's C compiler and Solaris (ACL)
34 #CC=cc
35 #SHARED_CC_OPT=-KPIC
36 #SHARED_LD_OPT=-G
37
38
39 # Nothing to configure beyond this point
40
41 base=c-test-fns
42 source=$(base).c
43 object=$(base).o
44 shared_lib=$(base).so
45
46 .PHONY: all
47 all: $(shared_lib)
48
49 $(shared_lib): $(source) Makefile
50         $(CC) ${SHARED_CC_OPT} -c $(source) -o $(object)
51         gcc ${SHARED_LD_OPT} $(object) -o $(shared_lib)
52         rm $(object)
53