# GNU Make solution makefile autogenerated by Premake # Type "make help" for usage help ifndef config config=release64 endif export config PROJECTS := Desertscape .PHONY: all clean help $(PROJECTS) all: $(PROJECTS) Desertscape: @echo "==== Building Desertscape ($(config)) ====" @${MAKE} --no-print-directory -C . -f Desertscape.make clean: @${MAKE} --no-print-directory -C . -f Desertscape.make clean help: @echo "Usage: make [config=name] [target]" @echo "" @echo "CONFIGURATIONS:" @echo " release64" @echo "" @echo "TARGETS:" @echo " all (default)" @echo " clean" @echo " Desertscape" @echo "" @echo "For more information, see http://industriousone.com/premake/quick-start"