diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-07-08 19:22:16 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-07-08 19:22:16 +0200 |
| commit | c2275e4b9625a1a19eb50d0880f70ed583d5c358 (patch) | |
| tree | f1b6798f017dd62ece5b56f05d5c7201ba50ff39 /Makefile | |
| parent | 66c1c11ec13d362ddfb1b5f6abe8127969c0ad29 (diff) | |
| download | nissy-core-c2275e4b9625a1a19eb50d0880f70ed583d5c358.tar.gz nissy-core-c2275e4b9625a1a19eb50d0880f70ed583d5c358.zip | |
Stats for h48 solver as tool
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
| @@ -18,8 +18,13 @@ test: debugcube.o | |||
| 18 | CUBETYPE=${CUBETYPE} TEST=${TEST} ./test/test.sh | 18 | CUBETYPE=${CUBETYPE} TEST=${TEST} ./test/test.sh |
| 19 | 19 | ||
| 20 | tool: cube.o | 20 | tool: cube.o |
| 21 | mkdir -p tools/results | ||
| 21 | CUBETYPE=${CUBETYPE} ./tools/run_tool.sh | 22 | CUBETYPE=${CUBETYPE} ./tools/run_tool.sh |
| 22 | 23 | ||
| 24 | debugtool: debugcube.o | ||
| 25 | mkdir -p tools/results | ||
| 26 | CUBETYPE=${CUBETYPE} DEBUG=1 ./tools/run_tool.sh | ||
| 27 | |||
| 23 | shell: cube.o | 28 | shell: cube.o |
| 24 | mkdir -p tables | 29 | mkdir -p tables |
| 25 | ${CC} ${CFLAGS} -o run cube.o shell.c | 30 | ${CC} ${CFLAGS} -o run cube.o shell.c |
| @@ -28,4 +33,4 @@ debugshell: debugcube.o | |||
| 28 | mkdir -p tables | 33 | mkdir -p tables |
| 29 | ${CC} ${DBGFLAGS} -o run debugcube.o shell.c | 34 | ${CC} ${DBGFLAGS} -o run debugcube.o shell.c |
| 30 | 35 | ||
| 31 | .PHONY: all clean test tool shell debugshell | 36 | .PHONY: all clean test tool debugtool shell debugshell |
