diff --git a/tools/assimp_cmd/makefile.mingw b/tools/assimp_cmd/makefile.mingw index 60b4d2b10..fb07713c1 100644 --- a/tools/assimp_cmd/makefile.mingw +++ b/tools/assimp_cmd/makefile.mingw @@ -60,7 +60,7 @@ all: $(OBJECTS) $(RCFILES) # --------------------------------------------------------------------------- .PHONY: clean clean: - -del *.o + -del *.o *.res cd ../../code/ && $(MAKE) -fmakefile.mingw clean # --------------------------------------------------------------------------- @@ -68,7 +68,7 @@ clean: # --------------------------------------------------------------------------- .PHONY: cleanme cleanme: - -del *.o + -del *.o *.res %.o:%.cpp $(CXX) -g -c $(CPPFLAGS) $? -o $@ $(INCLUDEFLAGS) $(DEFINEFLAGS)