summaryrefslogtreecommitdiffstats
path: root/ninja
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-02-22 23:10:07 +0100
committerNao Pross <naopross@thearcway.org>2019-02-22 23:15:47 +0100
commit50ab88d5d37e2af635997fce7b103f366594c511 (patch)
tree123585c0deabc01c96e0aa180353016844f19396 /ninja
parentUndo directory structure change (diff)
parentFix typos and other minor errors (diff)
downloadlibmm-50ab88d5d37e2af635997fce7b103f366594c511.tar.gz
libmm-50ab88d5d37e2af635997fce7b103f366594c511.zip
Merge branch 'master' into matrices
Diffstat (limited to 'ninja')
-rw-r--r--ninja/rules.ninja27
1 files changed, 0 insertions, 27 deletions
diff --git a/ninja/rules.ninja b/ninja/rules.ninja
deleted file mode 100644
index 8ff3e02..0000000
--- a/ninja/rules.ninja
+++ /dev/null
@@ -1,27 +0,0 @@
-includes = -I include
-cflags = -Wall -Werror -pedantic -fPIC -std=c++17 $includes
-
-libs =
-lflags = $libs
-
-flags = -fdiagnostics-color
-
-rule mkdir
- command = mkdir -p $out
- description = creating directory $out
-
-rule cpp
- command = g++ $flags $cflags -c $in -o $out $lflags
- description = compiling $in
-
-rule link
- command = g++ $flags $cflags -o $out $in $lflags
- description = linking $out
-
-rule link-shared
- command = g++ $flags $cflags -shared -o $out $in $lflags
- description = linking shared object $out
-
-rule link-static
- command = ar rvs $out $in
- description = creating archive $out