diff options
author | Linus Nordberg <linus@nordu.net> | 2010-10-05 08:36:38 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2010-10-05 08:36:38 +0200 |
commit | 3587b10283526f70b3215292573519e19b012130 (patch) | |
tree | a29dbb62847f84765da5e3eeb6195c92d46c7663 /lib/Makefile.am | |
parent | f429a882c9bc72a597e6bcbecf5842e37af754e0 (diff) |
Autotoolize.
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am new file mode 100644 index 0000000..9acc2cb --- /dev/null +++ b/lib/Makefile.am @@ -0,0 +1,18 @@ +AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I m4 + +SUBDIRS = . examples include + +INCLUDES = -I$(srcdir)/include + +lib_LTLIBRARIES = libradsec.la +libradsec_la_SOURCES = \ + attr.c \ + conf.c \ + debug.c \ + err.c \ + packet.c \ + request.c \ + radsec.c +libradsec_la_LDFLAGS = -version-info 0:0:0 +libradsec_la_CFLAGS = $(CFLAGS) -DDEBUG -DDEBUG_LEVENT |