In process of adding luaconsole.cpp
This commit is contained in:
@@ -1,24 +1,25 @@
|
||||
|
||||
CXX=g++ -std=c++17 -Wall -g -Iinc -Isyscpp
|
||||
CXX=g++ -std=c++17 -Wall -g -Iinc -Icpp
|
||||
|
||||
CPP_FILES=\
|
||||
syscpp/util.cpp\
|
||||
syscpp/luastack.cpp\
|
||||
syscpp/traceback.cpp\
|
||||
syscpp/planemap.cpp\
|
||||
syscpp/idalloc.cpp\
|
||||
syscpp/globaldb.cpp\
|
||||
syscpp/table.cpp\
|
||||
syscpp/animqueue.cpp\
|
||||
syscpp/source.cpp\
|
||||
syscpp/world.cpp\
|
||||
syscpp/viewer.cpp\
|
||||
syscpp/textgame.cpp\
|
||||
syscpp/main.cpp
|
||||
cpp/util.cpp\
|
||||
cpp/luastack.cpp\
|
||||
cpp/traceback.cpp\
|
||||
cpp/planemap.cpp\
|
||||
cpp/luaconsole.cpp\
|
||||
cpp/idalloc.cpp\
|
||||
cpp/globaldb.cpp\
|
||||
cpp/table.cpp\
|
||||
cpp/animqueue.cpp\
|
||||
cpp/source.cpp\
|
||||
cpp/world.cpp\
|
||||
cpp/viewer.cpp\
|
||||
cpp/textgame.cpp\
|
||||
cpp/main.cpp
|
||||
|
||||
OBJ_FILES=$(patsubst syscpp/%.cpp,obj/%.o,$(CPP_FILES))
|
||||
OBJ_FILES=$(patsubst cpp/%.cpp,obj/%.o,$(CPP_FILES))
|
||||
|
||||
obj/%.o: syscpp/%.cpp
|
||||
obj/%.o: cpp/%.cpp
|
||||
$(CXX) -c -MMD $< -o $@
|
||||
|
||||
main.exe: $(OBJ_FILES)
|
||||
|
||||
Reference in New Issue
Block a user