diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-05-24 22:20:00 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-05-24 22:20:00 +0200 |
| commit | 8954b4b7eaafa8e306f2aa6cbb7e32334107e6e1 (patch) | |
| tree | 6fc56f9ba2588d7c3c2d5f6d99b3343e1aaf8a34 /Makefile | |
| parent | 8145e034184ed5807c00f05b90101090c6513a29 (diff) | |
| download | nissy-core-8954b4b7eaafa8e306f2aa6cbb7e32334107e6e1.tar.gz nissy-core-8954b4b7eaafa8e306f2aa6cbb7e32334107e6e1.zip | |
Added table generation utility
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
| @@ -20,4 +20,10 @@ test: debugcube.o | |||
| 20 | benchmark: cube.o | 20 | benchmark: cube.o |
| 21 | CUBETYPE=${CUBETYPE} ./benchmark/bench.sh | 21 | CUBETYPE=${CUBETYPE} ./benchmark/bench.sh |
| 22 | 22 | ||
| 23 | .PHONY: all clean test benchmark | 23 | gen: cube.o |
| 24 | ${CC} ${CFLAGS} -o gen cube.o tables/tables.c | ||
| 25 | |||
| 26 | debuggen: debugcube.o | ||
| 27 | ${CC} ${DBGFLAGS} -o debuggen debugcube.o tables/tables.c | ||
| 28 | |||
| 29 | .PHONY: all clean test benchmark gen debuggen | ||
