From aff7077d2031545a15efd12e7f65eac723799491 Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Mon, 31 Oct 2016 11:59:07 -0400 Subject: Start spliting vpe.api into logically related pieces To reduce rebase / manual merge pain, among other things Change-Id: I3186df0479066916a2ca69c48759178b45ef035c Signed-off-by: Dave Barach Signed-off-by: Ole Troan --- build-data/suffix-rules.mk | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 build-data/suffix-rules.mk (limited to 'build-data') diff --git a/build-data/suffix-rules.mk b/build-data/suffix-rules.mk new file mode 100644 index 00000000..95069297 --- /dev/null +++ b/build-data/suffix-rules.mk @@ -0,0 +1,23 @@ +# Copyright (c) 2016 Cisco and/or its affiliates. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at: +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Shared suffix rules +# Please do not set "SUFFIXES = .api.h .api" here + +%.api.h: %.api + @echo " APIGEN " $@ ; \ + mkdir -p `dirname $@` ; \ + $(CC) $(CPPFLAGS) -E -P -C -x c $^ \ + | vppapigen --input - --output $@ --show-name $@ + + -- cgit 1.2.3-korg