mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
aa396234bd
At least, that's what the COMMENT says it does... PR: 4920 Submitted by: Pedro Giffuni <giffunip@asme.org>
21 lines
388 B
Plaintext
21 lines
388 B
Plaintext
--- Lib/Makefile.orig Sat Apr 25 23:43:54 1998
|
|
+++ Lib/Makefile Sat Apr 25 23:44:31 1998
|
|
@@ -2,7 +2,7 @@
|
|
|
|
INCLUDES = -I./
|
|
|
|
-CFLAGS = $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
|
|
+CFLAGS += $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
|
|
LD = $(CC) -L./
|
|
|
|
|
|
@@ -17,7 +17,7 @@
|
|
$(CC) $(CFLAGS) -c $*.c
|
|
|
|
../libmetis.a: $(OBJS)
|
|
- $(AR) $@ $(OBJS)
|
|
+ $(AR) $(ARFLAGS) $@ $(OBJS)
|
|
$(RANLIB) $@
|
|
|
|
checkin:
|