ec0a4d19e8
Commented out kernel module specific sections in configure.ac Don't include datapath in SUBDIRS in Makefile.am
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
# The goal of -Wno-syntax here is just to suppress the Automake warning
|
|
# about overriding distdir, below.
|
|
AUTOMAKE_OPTIONS = foreign -Wno-syntax subdir-objects
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
#SUBDIRS = datapath
|
|
SUBDIRS =
|
|
|
|
AM_CPPFLAGS = $(SSL_CFLAGS)
|
|
AM_CPPFLAGS += -I $(top_srcdir)/include
|
|
AM_CPPFLAGS += -I $(top_srcdir)/lib
|
|
|
|
AM_CFLAGS = -Wstrict-prototypes
|
|
|
|
if NDEBUG
|
|
AM_CPPFLAGS += -DNDEBUG
|
|
AM_CFLAGS += -fomit-frame-pointer
|
|
else
|
|
AM_LDFLAGS = -export-dynamic
|
|
endif
|
|
|
|
CLEANFILES =
|
|
DISTCLEANFILES =
|
|
EXTRA_DIST =
|
|
TESTS =
|
|
TESTS_ENVIRONMENT =
|
|
bin_PROGRAMS =
|
|
bin_SCRIPTS =
|
|
dist_commands_DATA =
|
|
dist_man_MANS =
|
|
dist_pkgdata_SCRIPTS =
|
|
dist_sbin_SCRIPTS =
|
|
man_MANS =
|
|
noinst_HEADERS =
|
|
noinst_LIBRARIES =
|
|
noinst_PROGRAMS =
|
|
noinst_SCRIPTS =
|
|
|
|
EXTRA_DIST += README.hwtables soexpand.pl regress
|
|
|
|
ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
|
|
|
|
SUFFIXES = .in
|
|
.in:
|
|
$(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
|
|
sed -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
|
|
-e 's,[@]PKIDIR[@],$(PKIDIR),g' \
|
|
-e 's,[@]RUNDIR[@],$(RUNDIR),g' \
|
|
-e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
|
|
-e 's,[@]PERL[@],$(PERL),g' > $@
|
|
|
|
include lib/automake.mk
|
|
include secchan/automake.mk
|
|
include controller/automake.mk
|
|
include utilities/automake.mk
|
|
include udatapath/automake.mk
|
|
include tests/automake.mk
|
|
include include/automake.mk
|
|
include third-party/automake.mk
|