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