18 lines
338 B
Makefile
18 lines
338 B
Makefile
AUTOMAKE_OPTIONS = nostdinc
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_builddir)/include \
|
|
-I$(top_srcdir)/include
|
|
|
|
#noinst_HEADERS =
|
|
|
|
lib_LTLIBRARIES = libqserad.la
|
|
libqserad_la_SOURCES = \
|
|
raddic.c \
|
|
radmsg.c
|
|
|
|
libqserad_la_CFLAGS =
|
|
libqserad_la_LDFLAGS = -L../cmn -L../cry -version-info 1:0:0 -no-undefined
|
|
libqserad_la_LIBADD = -lqsecry -lqsecmn
|
|
|