mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
201306cc07
PR: 13347 Submitted by: maintainer
20 lines
808 B
Plaintext
20 lines
808 B
Plaintext
--- Makefile.orig Fri Sep 17 14:20:52 1999
|
|
+++ Makefile Fri Sep 17 14:21:05 1999
|
|
@@ -10,13 +10,13 @@
|
|
all: rsa_kg pkey_gen tund keygen
|
|
|
|
rsa_kg: rsa_kg.c tund.h
|
|
- $(CC) -o rsa_kg rsa_kg.c $(INC) $(LIB) -lcrypto
|
|
+ $(CC) -o rsa_kg rsa_kg.c $(INC) $(LIB) -lcrypto $(EXTRA_SSL_LIBS)
|
|
|
|
pkey_gen: pkey_gen.c tund.h
|
|
- $(CC) -o pkey_gen pkey_gen.c $(INC) $(LIB) -lcrypto
|
|
+ $(CC) -o pkey_gen pkey_gen.c $(INC) $(LIB) -lcrypto $(EXTRA_SSL_LIBS)
|
|
|
|
tund: main.o tund.o secur.o scb.o utils.o md5.o alarm.o cipher.o search.o
|
|
- $(CC) -static -o tund main.o tund.o secur.o scb.o utils.o md5.o alarm.o cipher.o search.o $(LIB) -lmd -lcrypto
|
|
+ $(CC) -static -o tund main.o tund.o secur.o scb.o utils.o md5.o alarm.o cipher.o search.o $(LIB) -lmd -lcrypto $(EXTRA_SSL_LIBS)
|
|
|
|
main.o: main.c tund.h
|
|
$(CC) -c main.c $(INC)
|