blob: 27b875eec6ca4e5d945f70b670d6641caf73325c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
|