aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 0b7204e..8ec635c 100644
--- a/Makefile
+++ b/Makefile
@@ -3,19 +3,19 @@ include config.mk
3all: cube.o debugcube.o 3all: cube.o debugcube.o
4 4
5cube.s: clean 5cube.s: clean
6 ${CC} -D${CUBETYPE} ${CFLAGS} -c -S -o cube.s src/nissy.c 6 ${CC} -D${ARCH} ${CFLAGS} -c -S -o cube.s src/nissy.c
7 7
8cube.o: clean 8cube.o: clean
9 ${CC} -D${CUBETYPE} ${CFLAGS} -c -o cube.o src/nissy.c 9 ${CC} -D${ARCH} ${CFLAGS} -c -o cube.o src/nissy.c
10 10
11debugcube.o: clean 11debugcube.o: clean
12 ${CC} -D${CUBETYPE} ${DBGFLAGS} -c -o debugcube.o src/nissy.c 12 ${CC} -D${ARCH} ${DBGFLAGS} -c -o debugcube.o src/nissy.c
13 13
14clean: 14clean:
15 rm -rf *.o run 15 rm -rf *.o run
16 16
17test: debugcube.o 17test: debugcube.o
18 CC="${CC} -D${CUBETYPE} ${DBGFLAGS}" ./test/test.sh 18 CC="${CC} -D${ARCH} ${DBGFLAGS}" ./test/test.sh
19 19
20tool: cube.o 20tool: cube.o
21 mkdir -p tools/results 21 mkdir -p tools/results

Generated with cgit - Back to sebastiano.tronto.net