summaryrefslogtreecommitdiff
blob: 1216ed9991d25cf57484242d655539f0478902fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (C) 2001 Geert Bevin, Uwyn, http://www.uwyn.com
# Distributed under the terms of the GNU General Public License, v2 or later 
# Author : Geert Bevin <gbevin@uwyn.com>
#
# Modified 15 Apr 2002 Jon Nelson <jnelson@gentoo.org>
#  Clean up Makefile somewhat, and use make's implicit rules
#
# $Id: /var/cvsroot/gentoo-src/portage/src/sandbox/Attic/Makefile,v 1.5 2002/08/05 16:44:34 drobbins Exp $

.SUFFIXES:
.SUFFIXES: .c .o .so
.PRECIOUS: %.o

%.so: LIBS=-ldl
%.so: LDFLAGS=--shared
%.so: %.o 
	$(CC) $(CFLAGS) $(CPPFLAGS) $< -o $@ $(LIBS) $(LDFLAGS)
        
CC = gcc
CFLAGS = -Wall -O0 -fPIC
LIBS =
LDFLAGS =

TARGETS = sandbox libsandbox.so

all:	$(TARGETS)

clean:
	rm -f $(TARGETS)
	rm -f *.o *~