diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-09-24 05:11:58 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-09-24 05:11:58 +0000 |
commit | 1512ff152b524d507307a6ff8d7be1910abd4f94 (patch) | |
tree | a9763e12488641b98384ec6e83b40ea66d026282 /cad/chipmunk/files/patch-an | |
parent | Update to version 0.1.23 (diff) |
Update to version 5.51
PR: 13902
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'cad/chipmunk/files/patch-an')
-rw-r--r-- | cad/chipmunk/files/patch-an | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/cad/chipmunk/files/patch-an b/cad/chipmunk/files/patch-an new file mode 100644 index 000000000000..5e984de8a97c --- /dev/null +++ b/cad/chipmunk/files/patch-an @@ -0,0 +1,37 @@ +--- util/cleancif/Makefile.orig Wed Mar 12 02:47:24 1997 ++++ util/cleancif/Makefile Tue Sep 21 03:35:20 1999 +@@ -18,7 +18,7 @@ + # + # cleancif makefile + +-BINDIR= ../../bin ++BINDIR= %%PREFIX%%/bin + + ## + ## (1) Choosing your compiler +@@ -45,7 +45,7 @@ + ## + + CHIPMUNKCC = gcc +-CC = $(CHIPMUNKCC) ++CC ?= $(CHIPMUNKCC) + + ## + ## (2) Adding appropriate flags +@@ -89,13 +89,13 @@ + ## -m68040 : for 68040 and 68060 + ## + +-CFLAGS = ++CFLAGS += -DBSD -DF_OK=0 + +-cleancif: cleancif.o ++all: cleancif.o + $(CC) cleancif.o -lm -o cleancif + + install: cleancif +- cp cleancif $(BINDIR) ++ install -c -s cleancif $(BINDIR) + + clean: + -rm -f *.o cleancif |