Files
integration/luprex/core/Makefile

47 lines
916 B
Makefile
Raw Normal View History

2021-01-23 14:44:06 -05:00
2021-01-23 16:10:29 -05:00
CXX=g++ -std=c++17 -Wall -g -Iinc -Icpp
2021-01-23 14:44:06 -05:00
CPP_FILES=\
cpp/invocation.cpp\
2021-07-18 17:48:39 -04:00
cpp/spookyv2.cpp\
2021-11-21 13:35:39 -05:00
cpp/debugcollector.cpp\
cpp/drivenengine.cpp\
2021-10-07 14:58:20 -04:00
cpp/driver-mingw.cpp\
2021-01-23 16:10:29 -05:00
cpp/util.cpp\
cpp/luastack.cpp\
cpp/traceback.cpp\
cpp/planemap.cpp\
cpp/pprint.cpp\
2021-01-23 16:10:29 -05:00
cpp/luaconsole.cpp\
cpp/idalloc.cpp\
cpp/globaldb.cpp\
2021-02-18 17:21:25 -05:00
cpp/sched.cpp\
2021-01-23 16:10:29 -05:00
cpp/table.cpp\
2021-02-07 13:38:29 -05:00
cpp/gui.cpp\
2021-02-09 17:15:54 -05:00
cpp/luasnap.cpp\
2021-01-23 16:10:29 -05:00
cpp/animqueue.cpp\
cpp/streambuffer.cpp\
2021-01-23 16:10:29 -05:00
cpp/source.cpp\
2021-09-10 17:06:07 -04:00
cpp/world-core.cpp\
cpp/world-accessor.cpp\
cpp/world-difftab.cpp\
2021-09-10 17:06:07 -04:00
cpp/world-diffxmit.cpp\
cpp/world-pairtab.cpp\
2021-09-10 17:06:07 -04:00
cpp/world-testing.cpp\
2021-01-23 16:10:29 -05:00
cpp/textgame.cpp\
cpp/lpxserver.cpp\
cpp/lpxclient.cpp\
cpp/drivertests.cpp\
2021-10-20 14:05:09 -04:00
cpp/printbuffer.cpp\
2021-01-23 16:10:29 -05:00
cpp/main.cpp
2021-01-23 14:44:06 -05:00
2021-01-23 16:10:29 -05:00
OBJ_FILES=$(patsubst cpp/%.cpp,obj/%.o,$(CPP_FILES))
2021-01-23 14:44:06 -05:00
2021-01-23 16:10:29 -05:00
obj/%.o: cpp/%.cpp
2021-01-23 14:44:06 -05:00
$(CXX) -c -MMD $< -o $@
main.exe: $(OBJ_FILES)
2021-10-07 14:58:20 -04:00
$(CXX) -o main.exe $(OBJ_FILES) -lws2_32 -Llib lib/liblua-dbg.a
2021-01-23 14:44:06 -05:00
-include $(OBJ_FILES:%.o=%.d)