lua integration

This commit is contained in:
Dane Johnson
2021-01-13 16:47:16 -06:00
parent d5788228f6
commit 86f6203efc
16 changed files with 210 additions and 20 deletions

View File

@@ -1,2 +1,14 @@
all:
$(MAKE) -C core
include common.mk
CORE_SRC = $(wildcard core/*.cpp)
CORE_OBJ = $(CORE_SRC:.cpp=.o)
all: couch
couch: $(CORE_OBJ) scripting/couch_wrap.o
$(CXX) $(LIBS) -o $@ $^
$(CORE_OBJ): %.o: %.cpp
$(MAKE) -C core $(notdir $@)
scripting/couch_wrap.o: scripting/couch.i
$(MAKE) -C scripting $(notdir $@)