diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-08-03 08:06:18 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-08-03 08:06:18 +0200 |
commit | d8fea7f2b4abda430ebfe65aa65002cab2e9ce42 (patch) | |
tree | 41075b16543f9dcf3af200bdc0f26571c7e83f1f /a5/Makefile | |
parent | ab7c4c2c2ccf7809e84df4a67dd55eb949f5a780 (diff) |
A5: WIP
Diffstat (limited to 'a5/Makefile')
-rw-r--r-- | a5/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/a5/Makefile b/a5/Makefile new file mode 100644 index 0000000..282dfa9 --- /dev/null +++ b/a5/Makefile @@ -0,0 +1,4 @@ +all: matrix + +matrix: matrix.cc Makefile imatrix.h imatrix_nm.h matrix.h + g++ -O2 -Wall -Werror -Wextra -Wconversion -std=c++20 $< -o $@ |