From f0ca5b8a56161901bd419ce175fc7ade5ba47c23 Mon Sep 17 00:00:00 2001 From: aramis_acg Date: Sat, 11 Apr 2009 14:46:54 +0000 Subject: [PATCH] assimp_cmd: makefile.mingw now embeds icon and version into the executable. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@387 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- tools/assimp_cmd/makefile.mingw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)