Browse Source

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
aramis_acg 16 years ago
parent
commit
f0ca5b8a56
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tools/assimp_cmd/makefile.mingw

+ 2 - 2
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)