diff options
Diffstat (limited to 'Lua')
-rw-r--r-- | Lua/Makefile | 15 | ||||
-rw-r--r-- | Lua/lua-engine.cpp | 0 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Lua/Makefile b/Lua/Makefile new file mode 100644 index 0000000..27b875e --- /dev/null +++ b/Lua/Makefile @@ -0,0 +1,15 @@ +TARGET = Lua.a + +SRCS = \ +lua-engine.cpp \ + +SPATH = + +CPPFLAGS = -I. -I../Database -I../Database/internals -I../Engine + +include ../Makefile.cfg + +$(TARGET): $(OBJS) + $(AR) $@ $^ + +-include $(DEPS) diff --git a/Lua/lua-engine.cpp b/Lua/lua-engine.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Lua/lua-engine.cpp |