Jakub Grajciar | 7c5c40d | 2017-08-30 10:13:25 +0200 | [diff] [blame] | 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 | |
Jakub Grajciar | b467b2a | 2017-09-14 14:12:10 +0200 | [diff] [blame] | 20 | SRCS_C := $(shell find . -name "*.c" ) |
| 21 | SRCS_H := $(shell find . -name "*.h" ) |
| 22 | |
Jakub Grajciar | 7c5c40d | 2017-08-30 10:13:25 +0200 | [diff] [blame] | 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 | |
Jakub Grajciar | b467b2a | 2017-09-14 14:12:10 +0200 | [diff] [blame] | 33 | .PHONY: fixstyle |
| 34 | fixstyle: |
| 35 | @echo Fixing code style... |
| 36 | indent $(SRCS_C) $(SRCS_H) |
| 37 | @echo Code style fixed! |
| 38 | |
Jakub Grajciar | 7c5c40d | 2017-08-30 10:13:25 +0200 | [diff] [blame] | 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 |
Damjan Marion | 23d4e8a | 2018-03-26 14:09:38 +0200 | [diff] [blame] | 56 | libmemif_la_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src |
Jakub Grajciar | 7c5c40d | 2017-08-30 10:13:25 +0200 | [diff] [blame] | 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 |
Damjan Marion | 23d4e8a | 2018-03-26 14:09:38 +0200 | [diff] [blame] | 63 | icmpr_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/examples/icmp_responder |
Jakub Grajciar | 7c5c40d | 2017-08-30 10:13:25 +0200 | [diff] [blame] | 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 |
Jakub Grajciar | fab3890 | 2017-11-07 11:04:05 +0100 | [diff] [blame] | 70 | icmpr_epoll_LDADD = libmemif.la -lpthread |
Damjan Marion | 23d4e8a | 2018-03-26 14:09:38 +0200 | [diff] [blame] | 71 | icmpr_epoll_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/examples/icmp_responder |
Jakub Grajciar | 7c5c40d | 2017-08-30 10:13:25 +0200 | [diff] [blame] | 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 |
Damjan Marion | 23d4e8a | 2018-03-26 14:09:38 +0200 | [diff] [blame] | 79 | icmpr_mt_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/examples/icmp_responder |
Jakub Grajciar | 7c5c40d | 2017-08-30 10:13:25 +0200 | [diff] [blame] | 80 | |
| 81 | noinst_PROGRAMS = icmpr icmpr-epoll icmpr-mt |
| 82 | |
Damjan Marion | 23d4e8a | 2018-03-26 14:09:38 +0200 | [diff] [blame] | 83 | include_HEADERS = src/libmemif.h |
Jakub Grajciar | 7c5c40d | 2017-08-30 10:13:25 +0200 | [diff] [blame] | 84 | |
| 85 | lib_LTLIBRARIES = libmemif.la |
| 86 | |
Jakub Grajciar | c62a63d | 2017-11-20 13:11:50 +0100 | [diff] [blame] | 87 | if USE_CHECK |
| 88 | check_PROGRAMS = unit_test |
Jakub Grajciar | 7c5c40d | 2017-08-30 10:13:25 +0200 | [diff] [blame] | 89 | TESTS = $(check_PROGRAMS) |
Jakub Grajciar | c62a63d | 2017-11-20 13:11:50 +0100 | [diff] [blame] | 90 | endif |