mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
e7b91ed11a
redirecting connections through an HTTPS proxy.
21 lines
437 B
Plaintext
21 lines
437 B
Plaintext
--- Makefile Mon Jan 20 19:35:28 2003
|
|
+++ Makefile Mon Jan 20 19:35:41 2003
|
|
@@ -1,14 +1,14 @@
|
|
|
|
# $Id: Makefile,v 1.4 2003/01/18 10:41:02 anight Exp $
|
|
|
|
-CC=gcc
|
|
-CFLAGS=-g3 -O0 -Wall
|
|
+CC?=gcc
|
|
+CFLAGS?=-g3 -O0 -Wall
|
|
TARGETS=magictun.so
|
|
|
|
all: $(TARGETS)
|
|
|
|
magictun.so: magictun.c
|
|
- $(CC) $(CFLAGS) -fpic -shared magictun.c -o magictun.so -ldl
|
|
+ $(CC) $(CFLAGS) -fpic -shared magictun.c -o magictun.so
|
|
|
|
clean:
|
|
rm -f *.o $(TARGETS)
|