From e3655df2e3fdc98b5bcae4b2d93ede264658eaf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Lasersk=C3=B6ld?= Date: Mon, 30 Dec 2019 21:33:27 +0100 Subject: [PATCH] Added Matmakefile --- .gitignore | 8 ++++++++ Matmakefile | 15 +++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 Matmakefile diff --git a/.gitignore b/.gitignore index b8a3e86..c1d0dcb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,12 @@ *.o +*.d rym rym.exe + +#eclipse .cproject + +# qtcreator +rym.pro +rym.pro.user + diff --git a/Matmakefile b/Matmakefile new file mode 100644 index 0000000..e3ac310 --- /dev/null +++ b/Matmakefile @@ -0,0 +1,15 @@ + +rym.src += + main-nix.cpp + hant.cpp + graf.cpp + roamingbroadphase.cpp + shaderprogram.cpp + draw.cpp + +rym.libs += + -lSDL2 + -lGL + +rym.flags += + -O2