| 12345678910111213141516171819202122232425262728293031323334 | # GNU Make solution makefile autogenerated by GENie# Type "make help" for usage helpifndef config  config=releaseendifexport configPROJECTS := genie.PHONY: all clean help $(PROJECTS)all: $(PROJECTS)genie: 	@echo "==== Building genie ($(config)) ===="	@${MAKE} --no-print-directory -C . -f genie.makeclean:	@${MAKE} --no-print-directory -C . -f genie.make cleanhelp:	@echo "Usage: make [config=name] [target]"	@echo ""	@echo "CONFIGURATIONS:"	@echo "   release"	@echo "   debug"	@echo ""	@echo "TARGETS:"	@echo "   all (default)"	@echo "   clean"	@echo "   genie"	@echo ""	@echo "For more information, see https://github.com/bkaradzic/genie"
 |