summaryrefslogtreecommitdiff
path: root/pppd/plugins/Makefile.am
blob: 292daf222e80a7b946d4dc732867ef713afda87d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pppd_plugin_LTLIBRARIES = minconn.la passprompt.la passwordfd.la winbind.la
pppd_plugindir = $(PPPD_PLUGIN_DIR)

PLUGIN_CPPFLAGS = -I${top_srcdir}/include -I${top_srcdir}
PLUGIN_LDFLAGS = -module -avoid-version

minconn_la_CPPFLAGS = $(PLUGIN_CPPFLAGS)
minconn_la_LDFLAGS = $(PLUGIN_LDFLAGS)
minconn_la_SOURCES = minconn.c

passprompt_la_CPPFLAGS = $(PLUGIN_CPPFLAGS)
passprompt_la_LDFLAGS = $(PLUGIN_LDFLAGS)
passprompt_la_SOURCES = passprompt.c

passwordfd_la_CPPFLAGS = $(PLUGIN_CPPFLAGS)
passwordfd_la_LDFLAGS = $(PLUGIN_LDFLAGS)
passwordfd_la_SOURCES = passwordfd.c

winbind_la_CPPFLAGS = $(PLUGIN_CPPFLAGS)
winbind_la_LDFLAGS = $(PLUGIN_LDFLAGS)
winbind_la_SOURCES = winbind.c

if !SUNOS
SUBDIRS = pppoe pppoatm pppol2tp radius
endif