Skip to content

Commit 63fd1e1

Browse files
author
Jens L. Nedregård
committed
Added make check goal to follow convention
1 parent 2bfcfc2 commit 63fd1e1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Makefile

+6-3
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,21 @@ info_log = $(if $(subst false,,$(info)),$(info $(1)))
4040
all: $(OUT)/myst $(OUT)/spec
4141

4242
.PHONY: spec
43-
spec: itr-spec myst-spec ## Runs all specs
43+
spec: crystal-spec myst-spec ## Runs all specs
4444

4545
.PHONY: myst-spec
4646
myst-spec: $(OUT)/myst ## Runs just the in-language specs
4747
$(call info_log,Running in-language spec)
4848
$(OUT)/myst $(MYST_IN_LANG_SPEC)
4949

50-
.PHONY: itr-spec
51-
itr-spec: $(OUT)/spec ## Runs just the interpreter specs
50+
.PHONY: crystal-spec
51+
crystal-spec: $(OUT)/spec ## Runs just the crystal specs
5252
$(call info_log,Running interpreter spec)
5353
$(OUT)/spec
5454

55+
.PHONY: check
56+
check: myst-spec
57+
5558
.PHONY: install
5659
install: $(INSTALL_LOCATION) ## Install myst to INSTALL_LOCATION
5760

0 commit comments

Comments
 (0)