treebird/Makefile
nekobit 7634b3df93 Fully switch to premake (a little more sane to write and maintain)
FossilOrigin-Name: fe55e222e21c7ba224ea4c584f727fcb827b7d4aeaff910a2befcd3f3d90f203
2023-03-26 06:31:33 +00:00

35 lines
703 B
Makefile

# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help
ifndef config
config=debug
endif
export config
PROJECTS := treebird
.PHONY: all clean help $(PROJECTS)
all: $(PROJECTS)
treebird:
@echo "==== Building treebird ($(config)) ===="
@${MAKE} --no-print-directory -C . -f treebird.make
clean:
@${MAKE} --no-print-directory -C . -f treebird.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 " treebird"
@echo ""
@echo "For more information, see http://industriousone.com/premake/quick-start"