diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-07-27 16:47:22 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-07-27 16:47:22 +0200 |
commit | b91be737efcfed6ed5bebbe07d03527aa878f963 (patch) | |
tree | 9dff8bcabba4b61e3b5727e9494e099c7b4e4367 /a3/Makefile | |
parent | 05d1646c07d256937a8886094a94ed0071415ded (diff) |
A3: WIP
Diffstat (limited to 'a3/Makefile')
-rw-r--r-- | a3/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/a3/Makefile b/a3/Makefile new file mode 100644 index 0000000..1de80ba --- /dev/null +++ b/a3/Makefile @@ -0,0 +1,4 @@ +all: concurrency + +concurrency: concurrency.cc Makefile + g++ -Wall -Werror -Wextra -Wconversion -std=c++20 -pthread $< -o $@ |