Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Nov 12, 2024
1 parent 3d08c9c commit 3a2a7be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ MAKEFLAGS+= --warn-undefined-variables # Warn when an undefined variable is ref
SANITIZERS = release debug usan # TODO: lsan
OS := $(shell /usr/bin/uname)
ifeq ($(OS),Darwin)
SANITIZERS =+ tsan
SANITIZERS += tsan
endif
ifeq ($(OS),Linux)
SANITIZERS =+ asan # TODO: msan
SANITIZERS += asan # TODO: msan
endif

.PHONY: default doc run update check ce todo distclean clean codespell clang-tidy build test all format $(SANITIZERS)
Expand Down

0 comments on commit 3a2a7be

Please sign in to comment.