f66ef9695fa5523ce5dbe26fc2be1288593630bb
[vpp.git] / extras / libmemif / Makefile.am
1 # Copyright (c) 2017 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 AUTOMAKE_OPTIONS = foreign subdir-objects
15
16 ACLOCAL_AMFLAGS = -I m4
17
18 AM_CPPFLAGS = -g -DMEMIF_DBG -DICMP_DBG
19
20 SRCS_C := $(shell find . -name "*.c" )
21 SRCS_H := $(shell find . -name "*.h" )
22
23 .PHONY: release
24 release:
25         $(MAKE) AM_CPPFLAGS="-O3"
26
27 .PHONY: doc
28 doc:
29         @echo Building doxygen documentation...
30         doxygen doxygen.conf
31         @echo Doxygen documentation built in docs directory.
32
33 .PHONY: fixstyle
34 fixstyle:
35         @echo Fixing code style...
36         indent $(SRCS_C) $(SRCS_H)
37         @echo Code style fixed!
38
39 #
40 # unit_test
41 #
42 unit_test_SOURCES = test/unit_test.c \
43                     test/main_test.c \
44                     test/socket_test.c \
45                     src/main.c \
46                     src/socket.c
47 # macro MEMIF_UNIT_TEST -> compile functions without static keyword
48 # and declare them in header files, so they can be called from unit tests
49 unit_test_CPPFLAGS = $(AM_CPPFLAGS) -Itest -Isrc -DMEMIF_UNIT_TEST -g $(CHECK_CFLAGS)
50 unit_test_LDADD = $(CHECK_LIBS)
51
52 #
53 # main lib
54 #
55 libmemif_la_SOURCES = src/main.c src/socket.c
56 libmemif_la_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src
57
58 #
59 # ICMP responder example
60 #
61 icmpr_SOURCES = examples/icmp_responder/main.c examples/icmp_responder/icmp_proto.c
62 icmpr_LDADD = libmemif.la
63 icmpr_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/examples/icmp_responder
64
65 #
66 # ICMP responder libmemif event polling example
67 #
68 icmpr_epoll_SOURCES = examples/icmp_responder-epoll/main.c \
69                     examples/icmp_responder/icmp_proto.c
70 icmpr_epoll_LDADD = libmemif.la -lpthread
71 icmpr_epoll_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/examples/icmp_responder
72
73 #
74 # ICMP responder multi-thread example
75 #
76 icmpr_mt_SOURCES = examples/icmp_responder-mt/main.c \
77                       examples/icmp_responder/icmp_proto.c
78 icmpr_mt_LDADD = libmemif.la -lpthread
79 icmpr_mt_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/examples/icmp_responder
80
81 #
82 # ICMP responder external buffer example
83 #
84 icmpr_eb_SOURCES = examples/icmp_responder-eb/main.c\
85                         examples/icmp_responder/icmp_proto.c
86 icmpr_eb_LDADD = libmemif.la -lpthread
87 icmpr_eb_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/examples/icmp_responder
88
89 noinst_PROGRAMS = icmpr icmpr-epoll icmpr-mt icmpr-eb
90
91 include_HEADERS = src/libmemif.h
92
93 lib_LTLIBRARIES = libmemif.la
94
95 if USE_CHECK
96 check_PROGRAMS = unit_test
97 TESTS = $(check_PROGRAMS)
98 endif