diff options
Diffstat (limited to 'vpp-api/configure.ac')
-rw-r--r-- | vpp-api/configure.ac | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vpp-api/configure.ac b/vpp-api/configure.ac new file mode 100644 index 00000000000..31ee6656533 --- /dev/null +++ b/vpp-api/configure.ac @@ -0,0 +1,15 @@ +AC_INIT(vpp-api, 1.0.0) +LT_INIT +AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_SUBDIRS([java]) +AM_INIT_AUTOMAKE +AM_SILENT_RULES + +AM_PROG_AS +AC_PROG_CC +AM_PROG_CC_C_O + +AC_OUTPUT([python/Makefile]) +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT + |