https://github.com/aparis69/Desertscapes-Simulation
Tip revision: 38298220d0182d97ff1f12e7f6aa8850fac1b52b authored by Axel Paris on 11 August 2022, 19:56:01 UTC
Update README.md
Update README.md
Tip revision: 3829822
Makefile
# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help
ifndef config
config=release64
endif
export config
PROJECTS := Desertscape
.PHONY: all clean help $(PROJECTS)
all: $(PROJECTS)
Desertscape:
@echo "==== Building Desertscape ($(config)) ===="
@${MAKE} --no-print-directory -C . -f Desertscape.make
clean:
@${MAKE} --no-print-directory -C . -f Desertscape.make clean
help:
@echo "Usage: make [config=name] [target]"
@echo ""
@echo "CONFIGURATIONS:"
@echo " release64"
@echo ""
@echo "TARGETS:"
@echo " all (default)"
@echo " clean"
@echo " Desertscape"
@echo ""
@echo "For more information, see http://industriousone.com/premake/quick-start"