aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index cdf5bcd..8ff5f47 100644
--- a/Makefile
+++ b/Makefile
@@ -15,15 +15,15 @@ clean:
15 rm -rf *.o run 15 rm -rf *.o run
16 16
17test: debugcube.o 17test: debugcube.o
18 CUBETYPE=${CUBETYPE} TEST=${TEST} ./test/test.sh 18 CC="${CC} ${DBGFLAGS}" ./test/test.sh
19 19
20tool: cube.o 20tool: cube.o
21 mkdir -p tools/results 21 mkdir -p tools/results
22 CUBETYPE=${CUBETYPE} ./tools/run_tool.sh 22 CC="${CC} ${CFLAGS}" CUBEOBJ=cube.o ./tools/run_tool.sh
23 23
24debugtool: debugcube.o 24debugtool: debugcube.o
25 mkdir -p tools/results 25 mkdir -p tools/results
26 CUBETYPE=${CUBETYPE} DEBUG=1 ./tools/run_tool.sh 26 CC="${CC} ${DBGFLAGS}" CUBEOBJ=debugcube.o ./tools/run_tool.sh
27 27
28shell: cube.o 28shell: cube.o
29 mkdir -p tables 29 mkdir -p tables

Generated with cgit - Back to sebastiano.tronto.net