aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <0xdec05eba@gmail.com>2018-09-20 06:40:56 +0200
committerdec05eba <0xdec05eba@gmail.com>2018-09-20 06:41:00 +0200
commit64104c32c09d56a3a60aed2ac9096f0985f15e15 (patch)
treeb0da0e2b9e99594d4715961ac0ed7a85148eec0e
parent194a5708f3a42c6254cf99d8e03b5c8c60224feb (diff)
Remove test file
-rw-r--r--test.build20
1 files changed, 0 insertions, 20 deletions
diff --git a/test.build b/test.build
deleted file mode 100644
index f34a1e7..0000000
--- a/test.build
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-rule c_COMPILER
- command = 'cc' '$ARGS' '-c' '$in' '-o' '$out'
-
-rule cpp_COMPILER
- command = 'c++' '$ARGS' '-c' '$in' '-o' '$out'
- depfile = $out.d
-
-rule BUILD_EXEC
- command = 'c++' '$ARGS' '-o' '$out' '$in' '$LINK_ARGS' '$aliasing'
- depfile = $out.d
-
-build test@exe/main.cpp.o: cpp_COMPILER ../../main.cpp
- ARGS = $globalIncDir -std=c++14 -pedantic -fpie -MMD -MP '-Itest@exe' '-I..' -Wall -Wextra -Werror=return-type -fdiagnostics-show-option '-fdiagnostics-color=always' '-pipe' '-D_FILE_OFFSET_BITS=64' '-Winvalid-pch' -fstack-protector '-Og' -fexceptions -Wnon-virtual-dtor -g3 -D_FORTIFY_SOURCE=2 -D_GLIBCXX_ASSERTIONS -fasynchronous-unwind-tables
-
-build test: BUILD_EXEC test@exe/main.cpp.o
- ARGS = $globalIncDir -std=c++14 -pedantic -fpie -MMD -MP '-Itest@exe' '-I..' -Wall -Wextra -Werror=return-type -fdiagnostics-show-option '-fdiagnostics-color=always' '-pipe' '-D_FILE_OFFSET_BITS=64' '-Winvalid-pch' -fstack-protector '-Og' -fexceptions -Wnon-virtual-dtor -g3 -D_FORTIFY_SOURCE=2 -D_GLIBCXX_ASSERTIONS -fasynchronous-unwind-tables
-
-