aboutsummaryrefslogtreecommitdiffstats
path: root/turbotap/Makefile.am
blob: 8ea9c3f1c5b26dfa6fbcccdcbfe7c9da58b95c56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
AUTOMAKE_OPTIONS = foreign subdir-objects

AM_CFLAGS = -Wall -I@TOOLKIT_INCLUDE@ @DPDK@
AM_LDFLAGS = -module -shared -avoid-version

lib_LTLIBRARIES = libturbotap.la
libturbotap_la_SOURCES = turbotap/turbotap.c\
			 turbotap/device.c  \
			 turbotap/node.c   \
			 turbotap/cli.c 

nobase_include_HEADERS = turbotap/turbotap.h

if WITH_PLUGIN_TOOLKIT
install-data-hook:
	mkdir /usr/lib/vpp_plugins || true
	cp $(prefix)/lib/turbotap.so.*.*.* /usr/lib/vpp_plugins
endif