Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | # Copyright (c) 2015 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 | |
Anlu Yan | 04f8d3f | 2017-02-22 09:18:11 -0800 | [diff] [blame] | 16 | AM_CFLAGS = -Wall -I${top_srcdir} -I${top_builddir} |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 17 | AM_LDFLAGS = -module -shared -avoid-version |
Anlu Yan | 04f8d3f | 2017-02-22 09:18:11 -0800 | [diff] [blame] | 18 | AM_LIBTOOLFLAGS = --quiet |
| 19 | SUFFIXES = .api.h .api .api.json |
| 20 | API_FILES = |
| 21 | BUILT_SOURCES = |
| 22 | vppplugins_LTLIBRARIES = |
| 23 | vppapitestplugins_LTLIBRARIES = |
| 24 | noinst_HEADERS = |
| 25 | nobase_apiinclude_HEADERS = |
| 26 | ACLOCAL_AMFLAGS = -I m4 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 27 | |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 28 | vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins |
| 29 | vpppluginsdir = ${libdir}/vpp_plugins |
| 30 | |
Anlu Yan | 04f8d3f | 2017-02-22 09:18:11 -0800 | [diff] [blame] | 31 | include sample.am |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 32 | |
| 33 | %.api.h: %.api |
| 34 | mkdir -p `dirname $@` ; \ |
| 35 | $(CC) $(CPPFLAGS) -E -P -C -x c $^ \ |
| 36 | | vppapigen --input - --output $@ --show-name $@ |
| 37 | |
Ole Troan | f14e3bf | 2016-12-01 21:49:03 +0100 | [diff] [blame] | 38 | %.api.json: %.api |
| 39 | @echo " JSON APIGEN " $@ ; \ |
| 40 | mkdir -p `dirname $@` ; \ |
| 41 | $(CC) $(CPPFLAGS) -E -P -C -x c $^ \ |
| 42 | | vppapigen --input - --json $@ |
| 43 | |
Anlu Yan | 04f8d3f | 2017-02-22 09:18:11 -0800 | [diff] [blame] | 44 | apidir = $(prefix)/api/plugins |
| 45 | apiincludedir = ${includedir}/vpp_plugins |
Ole Troan | f14e3bf | 2016-12-01 21:49:03 +0100 | [diff] [blame] | 46 | |
Anlu Yan | 04f8d3f | 2017-02-22 09:18:11 -0800 | [diff] [blame] | 47 | api_DATA = \ |
| 48 | $(patsubst %.api,%.api.json,$(API_FILES)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 49 | |
Anlu Yan | 04f8d3f | 2017-02-22 09:18:11 -0800 | [diff] [blame] | 50 | BUILT_SOURCES += \ |
| 51 | $(patsubst %.api,%.api.h,$(API_FILES)) |
| 52 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 53 | |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 54 | # Remove *.la files |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 55 | install-data-hook: |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 56 | @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES)) |
| 57 | @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES)) |
Burt Silverman | 006eb47 | 2017-01-27 15:29:54 -0500 | [diff] [blame] | 58 | |
| 59 | CLEANFILES = $(BUILT_SOURCES) |