7634b3df93
FossilOrigin-Name: fe55e222e21c7ba224ea4c584f727fcb827b7d4aeaff910a2befcd3f3d90f203
34 lines
703 B
Makefile
34 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"
|