https://github.com/aparis69/Desertscapes-Simulation
Revision a9de5cba17a9109a39ec9954fcac6df27eaf0543 authored by Axel Paris on 16 February 2022, 13:14:57 UTC, committed by Axel Paris on 16 February 2022, 13:14:57 UTC
1 parent f06656a
Tip revision: a9de5cba17a9109a39ec9954fcac6df27eaf0543 authored by Axel Paris on 16 February 2022, 13:14:57 UTC
Cleaned the code and removed dependencies
Cleaned the code and removed dependencies
Tip revision: a9de5cb
Makefile
# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help
ifndef config
config=debug64
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 " debug64"
@echo " release64"
@echo ""
@echo "TARGETS:"
@echo " all (default)"
@echo " clean"
@echo " Desertscape"
@echo ""
@echo "For more information, see http://industriousone.com/premake/quick-start"
Computing file changes ...