aboutsummaryrefslogtreecommitdiffstats
path: root/src/scepclient
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2006-10-06 07:23:39 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2006-10-06 07:23:39 +0000
commit253d102f50d04a86291e9736d326d2a01f06fa74 (patch)
tree918cdc6b53a7b95314f47752c9ba8d28a3487c4d /src/scepclient
parentc09d8959b79bdd2ea71ea1e1bdf7c6123d77a38e (diff)
downloadstrongswan-253d102f50d04a86291e9736d326d2a01f06fa74.tar.bz2
strongswan-253d102f50d04a86291e9736d326d2a01f06fa74.tar.xz
cosmetics
Diffstat (limited to 'src/scepclient')
-rw-r--r--src/scepclient/Makefile.am17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/scepclient/Makefile.am b/src/scepclient/Makefile.am
index 079e25a35..a4de3bc58 100644
--- a/src/scepclient/Makefile.am
+++ b/src/scepclient/Makefile.am
@@ -1,7 +1,12 @@
ipsec_PROGRAMS = scepclient
scepclient_SOURCES = rsakey.c rsakey.h pkcs10.c pkcs10.h scep.c scep.h scepclient.c
-INCLUDES = -I$(top_srcdir)/src/libfreeswan -I$(top_srcdir)/src/pluto -I$(top_srcdir)/src/whack -I$(top_srcdir)/src/libcrypto
+INCLUDES = \
+-I$(top_srcdir)/src/libfreeswan \
+-I$(top_srcdir)/src/pluto \
+-I$(top_srcdir)/src/whack \
+-I$(top_srcdir)/src/libcrypto
+
AM_CFLAGS = -DDEBUG -DNO_PLUTO -DIPSEC_CONFDIR=\"${confdir}\"
scepclient_LDADD = asn1.o ca.o crl.o certs.o constants.o defs.o fetch.o id.o \
keys.o lex.o md2.o md5.o mp_defs.o ocsp.o oid.o pem.o pgp.o \
@@ -9,6 +14,11 @@ scepclient_LDADD = asn1.o ca.o crl.o certs.o constants.o defs.o fetch.o id.o \
$(top_srcdir)/src/libfreeswan/libfreeswan.a $(top_srcdir)/src/libcrypto/libcrypto.a \
-lgmp
+# This compile option activates dynamic URL fetching using libcurl
+if USE_LIBCURL
+ scepclient_LDADD += -lcurl
+endif
+
# This compile option activates smartcard support
if USE_SMARTCARD
scepclient_LDADD += -ldl
@@ -91,8 +101,3 @@ smartcard.o : $(PLUTODIR)/smartcard.c $(PLUTODIR)/smartcard.h
x509.o : $(PLUTODIR)/x509.c $(PLUTODIR)/x509.h
$(COMPILE) $(INCLUDES) -c -o $@ $<
-
-# This compile option activates dynamic URL fetching using libcurl
-if USE_LIBCURL
- scepclient_LDADD += -lcurl
-endif