mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
Merge pull request #113 from RedGl0w/MakeRun
Added `make PLATFORM=simulator run`
This commit is contained in:
20
Makefile
20
Makefile
@@ -164,3 +164,23 @@ cowsay_%:
|
|||||||
.PHONY: clena
|
.PHONY: clena
|
||||||
clena: cowsay_CLENA clean
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user