aboutsummaryrefslogtreecommitdiff
path: root/biology/fluctuate/files
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2005-02-18 13:39:34 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2005-02-18 13:39:34 +0000
commita8944ffbf8abc2ce3f911417bfb6dfa6f7b317f2 (patch)
tree62e0a908e2a1936eb7a00c09db093bd66fae2aad /biology/fluctuate/files
parentb3ed5741b5d32dc811948b52ea4001b32cd15dfe (diff)
downloadports-a8944ffbf8abc2ce3f911417bfb6dfa6f7b317f2.tar.gz
ports-a8944ffbf8abc2ce3f911417bfb6dfa6f7b317f2.zip
Notes
Diffstat (limited to 'biology/fluctuate/files')
-rw-r--r--biology/fluctuate/files/patch-Makefile40
1 files changed, 0 insertions, 40 deletions
diff --git a/biology/fluctuate/files/patch-Makefile b/biology/fluctuate/files/patch-Makefile
deleted file mode 100644
index 186784a3e2c5..000000000000
--- a/biology/fluctuate/files/patch-Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
---- Makefile.orig Thu Sep 3 00:56:03 1998
-+++ Makefile Mon Aug 6 15:58:49 2001
-@@ -1,30 +1,28 @@
- LIBS = -lm
- BINDIR = ./bin
--CFLAGS = -O
--CC = cc $(CFLAGS)
-
- fluctuate : fluctuate.o fluc_modellike.o getdata.o plot.o wrap.o \
- coal_modellike.o
-- $(CC) fluctuate.o fluc_modellike.o getdata.o plot.o wrap.o \
-+ $(CC) $(CFLAGS) fluctuate.o fluc_modellike.o getdata.o plot.o wrap.o \
- coal_modellike.o $(LIBS) -o fluctuate
-
- clean :
- rm fluctuate.o fluc_modellike.o coal_modellike.o getdata.o plot.o
-
- fluctuate.o : fluctuate.c
-- $(CC) -c fluctuate.c
-+ $(CC) $(CFLAGS) -c fluctuate.c
-
- fluc_modellike.o : fluc_modellike.c
-- $(CC) -c fluc_modellike.c
-+ $(CC) $(CFLAGS) -c fluc_modellike.c
-
- coal_modellike.o : coal_modellike.c
-- $(CC) -c coal_modellike.c
-+ $(CC) $(CFLAGS) -c coal_modellike.c
-
- getdata.o : getdata.c
-- $(CC) -c getdata.c
-+ $(CC) $(CFLAGS) -c getdata.c
-
- plot.o : plot.c
-- $(CC) -c plot.c
-+ $(CC) $(CFLAGS) -c plot.c
-
- wrap.o : wrap.c
-- $(CC) -c wrap.c
-+ $(CC) $(CFLAGS) -c wrap.c