# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help

ifndef config
  config=debug
endif
export config

PROJECTS := go2

.PHONY: all clean help $(PROJECTS)

all: $(PROJECTS)

go2: 
	@echo "==== Building go2 ($(config)) ===="
	@${MAKE} --no-print-directory -C build/gmake -f Makefile

clean:
	@${MAKE} --no-print-directory -C build/gmake -f Makefile clean

help:
	@echo "Usage: make [config=name] [target]"
	@echo ""
	@echo "CONFIGURATIONS:"
	@echo "   debug"
	@echo "   release"
	@echo ""
	@echo "TARGETS:"
	@echo "   all (default)"
	@echo "   clean"
	@echo "   go2"
	@echo ""
	@echo "For more information, see http://industriousone.com/premake/quick-start"