diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-11-17 16:18:19 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-11-17 16:20:22 +0300 |
commit | e1bf912316b7f156218aaf5d8571443e47d880ed (patch) | |
tree | fd61f210cb7f0541481dedbc22a1590fe6782b6b /vtek3/Makefile | |
parent | c8548265806e368433eee27cde551a6ee13fd204 (diff) |
Added libprakipp library
Diffstat (limited to 'vtek3/Makefile')
-rw-r--r-- | vtek3/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vtek3/Makefile b/vtek3/Makefile new file mode 100644 index 0000000..4f9a99a --- /dev/null +++ b/vtek3/Makefile @@ -0,0 +1,6 @@ + +CXXFLAGS += -std=c++2c -mavx2 -Iinclude +CXXFLAGS += -ggdb + +main: main.cpp + $(CXX) -o $@ $^ $(CXXFLAGS) |