aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-09-05 10:17:39 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2024-09-05 10:17:39 +0200
commite419ca484e62f2771766a87bfaedf75a5f99c2b1 (patch)
tree60bfdccf6c5f51ca4716ce9daece9fb40a9128ff /Makefile
parentb17411249b17133f35833c202e6c2e4bf43b3298 (diff)
downloadnissy-core-e419ca484e62f2771766a87bfaedf75a5f99c2b1.tar.gz
nissy-core-e419ca484e62f2771766a87bfaedf75a5f99c2b1.zip
Changed build options TYPE -> ARCH
Diffstat (limited to '')
-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