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 | |
| 16 | AM_CFLAGS = -Wall -I@TOOLKIT_INCLUDE@ |
| 17 | |
| 18 | lib_LTLIBRARIES = sample_plugin.la sample_test_plugin.la |
| 19 | sample_plugin_la_SOURCES = sample/sample.c sample/node.c \ |
| 20 | sample/sample_plugin.api.h |
| 21 | sample_plugin_la_LDFLAGS = -module |
| 22 | |
| 23 | BUILT_SOURCES = sample/sample.api.h |
| 24 | |
| 25 | SUFFIXES = .api.h .api |
| 26 | |
| 27 | %.api.h: %.api |
| 28 | mkdir -p `dirname $@` ; \ |
| 29 | $(CC) $(CPPFLAGS) -E -P -C -x c $^ \ |
| 30 | | vppapigen --input - --output $@ --show-name $@ |
| 31 | |
| 32 | nobase_include_HEADERS = \ |
| 33 | sample/sample_all_api_h.h \ |
| 34 | sample/sample_msg_enum.h \ |
| 35 | sample/sample.api.h |
| 36 | |
| 37 | sample_test_plugin_la_SOURCES = sample/sample_test.c sample/sample_plugin.api.h |
| 38 | sample_test_plugin_la_LDFLAGS = -module |
| 39 | |
| 40 | if WITH_PLUGIN_TOOLKIT |
| 41 | install-data-hook: |
| 42 | mkdir /usr/lib/vpp_plugins || true |
| 43 | mkdir /usr/lib/vpp_api_test_plugins || true |
| 44 | cp $(prefix)/lib/sample_plugin.so.*.*.* /usr/lib/vpp_plugins |
| 45 | cp $(prefix)/lib/sample_test_plugin.so.*.*.* \ |
| 46 | /usr/lib/vpp_api_test_plugins |
| 47 | endif |