delete dep files too (and make dep file enumeration work)
Haldean Brown
1 year, 11 months ago
13 | 13 | lib/imgui/examples/imgui_impl_glfw.cpp |
14 | 14 | |
15 | 15 | objects = $(patsubst %.cpp,%.o,$(cxx_sources)) |
16 | deps = $(patsubst %.cpp,%.d,$(c_sources)) | |
16 | deps = $(patsubst %.cpp,%.d,$(cxx_sources)) | |
17 | 17 | |
18 | 18 | CXXFLAGS += -DIMGUI_IMPL_OPENGL_LOADER_GLEW |
19 | 19 | CXXFLAGS += -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS |
55 | 55 | -include $(patsubst %.o,%.d,$(objects)) |
56 | 56 | |
57 | 57 | clean: |
58 | rm -rf $(objects) build tool/xd-1.4/xd.o tool/xd.exe | |
58 | rm -rf $(objects) $(deps) build tool/xd-1.4/xd.o tool/xd.exe | |
59 | 59 | .PHONY: clean |