From: Andrew Yourtchenko Date: Fri, 18 Nov 2016 10:39:56 +0000 (+0000) Subject: Add the Makefile to Lua API which got gitignored and adjust local .gitignore X-Git-Tag: v17.01-rc1~212 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F68%2F3868%2F2;p=vpp.git Add the Makefile to Lua API which got gitignored and adjust local .gitignore Change-Id: I87358dc5dddc6964c128283f096d382492af5886 Signed-off-by: Andrew Yourtchenko --- diff --git a/vpp-api/lua/.gitignore b/vpp-api/lua/.gitignore new file mode 100644 index 00000000000..061eabdc5e8 --- /dev/null +++ b/vpp-api/lua/.gitignore @@ -0,0 +1,2 @@ +# A .gitignore to avoid ignoring the Makefile +!Makefile diff --git a/vpp-api/lua/Makefile b/vpp-api/lua/Makefile new file mode 100644 index 00000000000..b5a95b2fe9d --- /dev/null +++ b/vpp-api/lua/Makefile @@ -0,0 +1,6 @@ +all: libcough.so + +libcough.so: cough.c + gcc -o libcough.so -shared -fPIC cough.c +clean: + rm -f libcough.so