forked from OpenDataPlane/odp-dpdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
33 lines (28 loc) · 684 Bytes
/
Makefile.am
File metadata and controls
33 lines (28 loc) · 684 Bytes
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
26
27
28
29
30
31
32
33
ACLOCAL_AMFLAGS=-I m4
AM_DISTCHECK_CONFIGURE_FLAGS = --enable-user-guides \
--enable-helper-linux \
--with-testdir
if PLATFORM_IS_LINUX_GENERIC
PLATFORM_DIR = platform/linux-generic
PLATFORM_TEST_DIR = platform/linux-generic/test
endif
if PLATFORM_IS_LINUX_DPDK
PLATFORM_DIR = platform/linux-dpdk
PLATFORM_TEST_DIR = platform/linux-dpdk/test
endif
SUBDIRS = \
include \
$(PLATFORM_DIR) \
helper \
test \
$(PLATFORM_TEST_DIR) \
helper/test \
doc \
example
@DX_RULES@
EXTRA_DIST = bootstrap CHANGELOG config/README config/odp-$(with_platform).conf
distcheck-hook:
if test -n "$(DX_CLEANFILES)" ; \
then \
$(MAKE) doxygen-doc ; \
fi