Skip to content

Commit

Permalink
Makefile.am formatting and removal of spurious variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Nordberg committed Sep 27, 2011
1 parent bab2a00 commit af81fa7
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
AUTOMAKE_OPTIONS = foreign

sbin_PROGRAMS = radsecproxy
bin_PROGRAMS = catgconf
bin_PROGRAMS = catgconf
noinst_LIBRARIES = librsp.a

radsecproxy_SOURCES = main.c

nodist_librsp_a_SOURCES = $(radsecproxy_SOURCES)
librsp_a_SOURCES = \
radsecproxy.c \
tlscommon.c \
gconfig.c \
util.c \
debug.c \
list.c \
hash.c \
tlv11.c \
hostport.c \
radmsg.c \
udp.c \
tcp.c \
tls.c \
dtls.c \
fticks.c \
radsecproxy.h \
tlscommon.h \
gconfig.h \
debug.h \
util.h \
list.h \
hash.h \
tlv11.h \
hostport.h \
radmsg.h \
udp.h \
tcp.h \
tls.h \
dtls.h \
fticks.h

librsp_a_SOURCES = radsecproxy.c \
tlscommon.c \
gconfig.c \
util.c \
debug.c \
list.c \
hash.c \
tlv11.c \
hostport.c \
radmsg.c \
udp.c \
tcp.c \
tls.c \
dtls.c \
fticks.c \
radsecproxy.h \
tlscommon.h \
gconfig.h \
debug.h \
util.h \
list.h \
hash.h \
tlv11.h \
hostport.h \
radmsg.h \
udp.h \
tcp.h \
tls.h \
dtls.h \
fticks.h
catgconf_SOURCES = \
debug.c \
util.c \
gconfig.c \
catgconf.c

catgconf_SOURCES = debug.c \
util.c \
gconfig.c \
catgconf.c

radsecproxy_CFLAGS = -g -Wall -Werror -fno-strict-aliasing \
@SSL_CFLAGS@ @TARGET_CFLAGS@
radsecproxy_CFLAGS = \
-g -Wall -Werror -fno-strict-aliasing @SSL_CFLAGS@ @TARGET_CFLAGS@
radsecproxy_LDFLAGS = @SSL_LDFLAGS@ @TARGET_LDFLAGS@
radsecproxy_LDADD = librsp.a @SSL_LIBS@
radsecproxy_LDADD = librsp.a @SSL_LIBS@

catgconf_CFLAGS = -g -Wall -fno-strict-aliasing @TARGET_CFLAGS@
catgconf_LDFLAGS = @TARGET_LDFLAGS@
catgconf_CFLAGS = -g -Wall -fno-strict-aliasing @TARGET_CFLAGS@
catgconf_LDFLAGS = @TARGET_LDFLAGS@

dist_man_MANS = radsecproxy.1 $(GENMANPAGES)
EXTRA_DIST = LICENSE THANKS radsecproxy.conf-example radsecproxy.conf.5.xml \
Expand Down

0 comments on commit af81fa7

Please sign in to comment.