1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/biology/seaview/files/patch-aa
Chris Piazza 2174e47129 Distfile changed on the MASTER_SITE. I have no idea if this
was functional or not, as there isn't a version number anywhere.
Support CC in patch-aa, too...
1999-08-31 03:57:56 +00:00

21 lines
497 B
Plaintext

--- Makefile.orig Mon Aug 30 20:54:56 1999
+++ Makefile Mon Aug 30 20:55:48 1999
@@ -0,0 +1,17 @@
+#matpt.h
+#seaview.h
+CC ?= gcc
+CFLAGS+= -I${X11BASE}/include
+LIBS = -L${X11BASE}/lib -lxforms -lX11 -lm
+SRCS = align.c comlines.c load_seq.c regions.c seaview.c use_mase_files.c xfmatpt.c
+OBJS = align.o comlines.o load_seq.o regions.o seaview.o use_mase_files.o xfmatpt.o
+
+all: seaview
+
+seaview: $(OBJS)
+ $(CC) -o seaview $(OBJS) $(LIBS)
+
+c.o.: $(SRCS)
+ $(CC) $(CFLAGS) -c $(SRCS)
+
+