Add missing -MMD to makefile

This commit is contained in:
2021-12-08 13:57:14 -05:00
parent e15a9ab082
commit c3888e90c9

View File

@@ -84,7 +84,7 @@ CORE_OBJ_FILES=\
lobj/%.o: ../eris-master/src/%.c
gcc -Wall -g -DLUA_USE_APICHECK $(LUAFLAGS) -c $< -o $@
gcc -Wall -g -DLUA_USE_APICHECK $(LUAFLAGS) -c -MMD $< -o $@
obj/%.o: cpp/%.cpp
g++ -std=c++17 -Wall -g -Iinc -Icpp -c -MMD $< -o $@