Update Makefile

This commit is contained in:
redgl0w
2019-12-27 19:33:06 +01:00
committed by GitHub
parent 588c05f6b4
commit c91227bc2e

View File

@@ -141,3 +141,23 @@ cowsay_%:
.PHONY: clena
clena: cowsay_CLENA clean
.PHONY: compile
compile: output/$(BUILD_TYPE)/simulator/$(HOST)/epsilon.$(EXE)
.PHONY: cleanandcompile
cleanandcompile:
${MAKE} cleanall
${MAKE} compile
.PHONY: start
start:
@echo "INFO Starting output/$(BUILD_TYPE)/simulator/$(HOST)/epsilon.$(EXE)"
@$(Q) output/$(BUILD_TYPE)/simulator/$(HOST)/epsilon.$(EXE)
.PHONY: clean_run
clean_run: cleanandcompile
${MAKE} start
.PHONY: run
run: compile
${MAKE} start