Add a clean-msvs target for cleaning up after gyp and VisualStudio/msbuild

This commit is contained in:
Ryan Prichard 2016-01-16 13:27:52 -06:00
parent f04774eb06
commit f2c4f6a59b

View File

@ -71,10 +71,16 @@ install : all
clean :
rm -fr build
clean-msvs :
rm -fr src/Default
rm -f src/*.vcxproj
rm -f src/*.vcxproj.filters
rm -f src/*.sln
distclean : clean
rm -f config.mk
.PHONY : default all tests install clean distclean
.PHONY : default all tests install clean clean-msvs distclean
build/mingw/%.o : src/%.cc VERSION.txt
@echo Compiling $<