1 # Copyright (c) 2016 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:
6 # http://www.apache.org/licenses/LICENSE-2.0
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.
14 ###############################################################################
16 ###############################################################################
18 AUTOMAKE_OPTIONS = foreign subdir-objects
19 ACLOCAL_AMFLAGS = -I m4
20 AM_LIBTOOLFLAGS = --quiet
22 AM_CFLAGS = @CPU_FLAGS@ -Wall
23 AM_CXXFLAGS = -Wall -std=gnu++11
26 SUFFIXES = .api.h .api .api.json
34 @echo "Building vppctl command list..."
35 @DIR_SEARCH="$(srcdir)" ; \
36 DIR_EXCLUDE="examples" ; \
37 GREP_TIME=`time (grep -wIr "\.path = " $$DIR_SEARCH --exclude-dir=$$DIR_EXCLUDE \
38 | cut -d '"' -f2 | sort -u > $(srcdir)/scripts/vppctl-cmd-list) 2>&1` ; \
39 GREP_TIME=`echo $$GREP_TIME | awk '{print $$2}'` ; \
40 echo "Command list built, Time taken: $$GREP_TIME"
42 ###############################################################################
44 ###############################################################################
70 include vpp-api-test.am
74 SUBDIRS += vpp-api/vapi
78 SUBDIRS += vpp-api/python
82 SUBDIRS += vpp-api/java
86 SUBDIRS += vpp-api/vom
89 ###############################################################################
91 ###############################################################################
93 include suffix-rules.mk
96 apidir = $(prefix)/share/vpp/api/core
99 $(patsubst %.api,%.api.json,$(API_FILES))
102 $(patsubst %.api,%.api.h,$(API_FILES))
104 endif # if ENABLE_VLIB
105 endif # if ENABLE_SVM
107 CLEANFILES += $(BUILT_SOURCES) $(api_DATA)