Skip to content

Commit

Permalink
#37 delete aboba and fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
c71n93 committed Oct 17, 2023
1 parent 15f7f96 commit c7f5fb6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ build: init
cmake -S $(PWD) -B $(PWD)/$(BUILD_DIR) -DCHAIVM_ADD_SANITIZERS=OFF
cmake --build $(PWD)/$(BUILD_DIR) --parallel $(JOBS)

.PHONY: build-val
build-val: init
.PHONY: build-memcheck
build-memcheck: init
cmake -S $(PWD) -B $(PWD)/$(BUILD_DIR) -DCHAIVM_ADD_SANITIZERS=ON
cmake --build $(PWD)/$(BUILD_DIR) --parallel $(JOBS)

.PHONY: test
test: build
export GTEST_COLOR=1 && ctest --test-dir $(PWD)/$(BUILD_DIR)/test --parallel $(JOBS) --output-on-failure

.PHONY: test-val
test-val: build-val
.PHONY: test-memcheck
test-memcheck: build-memcheck
export GTEST_COLOR=1 && ctest --test-dir $(PWD)/$(BUILD_DIR)/test --parallel $(JOBS) --output-on-failure

.PHONY: bench
Expand Down
Empty file removed aboba
Empty file.

0 comments on commit c7f5fb6

Please sign in to comment.