Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ test: unit-tests build-examples
unit-tests: $(tests_binary)
$^ --exclude=integration --sequential

test-one: $(tests_binary)
$^ --only="$(t)"

$(tests_binary): $(SOURCE_FILES) | $(BUILD_DIR)
$(GET_DEPENDENCIES_WITH)
$(PONYC) -o $(BUILD_DIR) $(SRC_DIR)
Expand Down Expand Up @@ -63,4 +66,4 @@ all: test
$(BUILD_DIR):
mkdir -p $(BUILD_DIR)

.PHONY: all build-examples clean TAGS test
.PHONY: all build-examples clean TAGS test test-one
Loading