Revision 4fa029dd5777505abfe78020f013bad97406b9f3 authored by aparis69 on 21 July 2019, 11:20:49 UTC, committed by aparis69 on 21 July 2019, 11:20:49 UTC
Makefile
# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help
ifndef config
config=debug64
endif
export config
PROJECTS := ImplicitTerrains
.PHONY: all clean help $(PROJECTS)
all: $(PROJECTS)
ImplicitTerrains:
@echo "==== Building ImplicitTerrains ($(config)) ===="
@${MAKE} --no-print-directory -C . -f ImplicitTerrains.make
run:
cd Out/ && ./ImplicitTerrains && cd ../
clean:
@${MAKE} --no-print-directory -C . -f ImplicitTerrains.make clean
help:
@echo "Usage: make [config=name] [target]"
@echo ""
@echo "CONFIGURATIONS:"
@echo " debug64"
@echo " release64"
@echo ""
@echo "TARGETS:"
@echo " all (default)"
@echo " clean"
@echo " ImplicitTerrains"
@echo ""
@echo "For more information, see http://industriousone.com/premake/quick-start"

Computing file changes ...