diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-11-12 19:38:19 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-11-12 19:38:19 +0100 |
commit | e18a040e6ca1a6798affcd4731109855286d4c4c (patch) | |
tree | 9f5add03e686a4ee49d57cb6d25d93141cf50398 /src/development/c++/Makefile | |
parent | 71f731ca0675b19562221233e9a30ffcad0107d0 (diff) | |
download | notes-e18a040e6ca1a6798affcd4731109855286d4c4c.tar.gz notes-e18a040e6ca1a6798affcd4731109855286d4c4c.zip |
c++: add small test registry
Diffstat (limited to 'src/development/c++/Makefile')
-rw-r--r-- | src/development/c++/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/development/c++/Makefile b/src/development/c++/Makefile new file mode 100644 index 0000000..610b5a2 --- /dev/null +++ b/src/development/c++/Makefile @@ -0,0 +1,10 @@ +SRC = concepts-11.cc meta.cc meta2.cc meta4.cc +BIN = $(SRC:.cc=) + +all: $(BIN) + +%: %.cc + $(CXX) -o $* $^ -std=c++17 -g -fsanitize=address -fsanitize=undefined -fsanitize=leak + +clean: + $(RM) $(BIN) |