blob: 6c4282c426adff79c258d730d90671b7836cb8fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# set the include path found by configure
INCLUDES = $(all_includes)
# the library search path.
lib_LTLIBRARIES = pptp.la
pptp_la_LDFLAGS = -module
pptp_la_SOURCES = pptp.c pptp_callmgr.c pptp_ctrl.c util.c vector.c \
dirutil.c pptp_quirks.c orckit_quirks.c
noinst_HEADERS = pptp_callmgr.h pptp_ctrl.h util.h vector.h pptp_options.h \
dirutil.h pptp_quirks.h orckit_quirks.h if_pppox.h
AM_CFLAGS = -Wall
man_MANS = pppd-pptp.8
|