diff options
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 $@ |