https://github.com/aparis69/Desertscapes-Simulation
Revision f06656a1517c49df4e617c5c601be0e416511755 authored by Axel Paris on 08 June 2020, 09:15:08 UTC, committed by Axel Paris on 08 June 2020, 09:15:08 UTC
1 parent 2e5ddef
Tip revision: f06656a1517c49df4e617c5c601be0e416511755 authored by Axel Paris on 08 June 2020, 09:15:08 UTC
fixed makefile - was not up to date!
fixed makefile - was not up to date!
Tip revision: f06656a
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 ...