diff options
Diffstat (limited to 'Examples/lua/arrays/Makefile')
-rw-r--r-- | Examples/lua/arrays/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Examples/lua/arrays/Makefile b/Examples/lua/arrays/Makefile new file mode 100644 index 0000000..bb9cf0b --- /dev/null +++ b/Examples/lua/arrays/Makefile @@ -0,0 +1,18 @@ +TOP = ../..
+SWIG = $(TOP)/../preinst-swig
+SRCS = example.c
+TARGET = example
+INTERFACE = example.i
+
+all::
+ $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
+ TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' lua
+
+static::
+ $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
+ TARGET='mylua' INTERFACE='$(INTERFACE)' lua_static
+
+clean::
+ $(MAKE) -f $(TOP)/Makefile lua_clean
+
+check: all
|