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