From e419ca484e62f2771766a87bfaedf75a5f99c2b1 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 5 Sep 2024 10:17:39 +0200 Subject: Changed build options TYPE -> ARCH --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0b7204e..8ec635c 100644 --- a/Makefile +++ b/Makefile @@ -3,19 +3,19 @@ include config.mk all: cube.o debugcube.o cube.s: clean - ${CC} -D${CUBETYPE} ${CFLAGS} -c -S -o cube.s src/nissy.c + ${CC} -D${ARCH} ${CFLAGS} -c -S -o cube.s src/nissy.c cube.o: clean - ${CC} -D${CUBETYPE} ${CFLAGS} -c -o cube.o src/nissy.c + ${CC} -D${ARCH} ${CFLAGS} -c -o cube.o src/nissy.c debugcube.o: clean - ${CC} -D${CUBETYPE} ${DBGFLAGS} -c -o debugcube.o src/nissy.c + ${CC} -D${ARCH} ${DBGFLAGS} -c -o debugcube.o src/nissy.c clean: rm -rf *.o run test: debugcube.o - CC="${CC} -D${CUBETYPE} ${DBGFLAGS}" ./test/test.sh + CC="${CC} -D${ARCH} ${DBGFLAGS}" ./test/test.sh tool: cube.o mkdir -p tools/results -- cgit v1.3