diff options
Diffstat (limited to 'src/examples/sample-plugin')
-rw-r--r-- | src/examples/sample-plugin/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/examples/sample-plugin/Makefile.am b/src/examples/sample-plugin/Makefile.am index 5c279c44b11..1825a8f111f 100644 --- a/src/examples/sample-plugin/Makefile.am +++ b/src/examples/sample-plugin/Makefile.am @@ -31,12 +31,13 @@ vpppluginsdir = ${libdir}/vpp_plugins include sample.am %.api.h: %.api - mkdir -p `dirname $@` ; \ + @echo " APIGEN " $@ ; \ + mkdir -p `dirname $@` ; \ vppapigen --input $^ --output $@ %.api.json: %.api - @echo " JSON APIGEN " $@ ; \ - mkdir -p `dirname $@` ; \ + @echo " JSON APIGEN " $@ ; \ + mkdir -p `dirname $@` ; \ vppapigen --input $^ JSON --output $@ apidir = $(prefix)/api/plugins |