You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
286 B
16 lines
286 B
all: release
|
|
|
|
.PHONY: debug
|
|
debug:
|
|
@./tool build -d --portmidi orca
|
|
|
|
.PHONY: release
|
|
release:
|
|
@./tool build --portmidi orca
|
|
@echo "Executable program saved as: build/orca" >&2
|
|
@echo "To run it, simply execute it:" >&2
|
|
@echo "$$ build/orca" >&2
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@./tool clean
|
|
|