aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-05-10 08:55:03 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2024-05-10 08:55:03 +0200
commit75966319fd5891c2c1bd35b1f7c93eab172fd28e (patch)
tree850a69906c7140be36670f2014e78ff91a96ab33 /Makefile
parent15a072db18e441db5aa9e5339341fa1a466b504a (diff)
downloadnissy-core-75966319fd5891c2c1bd35b1f7c93eab172fd28e.tar.gz
nissy-core-75966319fd5891c2c1bd35b1f7c93eab172fd28e.zip
Moved to src/
Diffstat (limited to '')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c51be91..a315476 100644
--- a/Makefile
+++ b/Makefile
@@ -3,13 +3,13 @@ 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 cube.c 6 ${CC} -D${CUBETYPE} ${CFLAGS} -c -S -o cube.s src/cube.c
7 7
8cube.o: clean 8cube.o: clean
9 ${CC} -D${CUBETYPE} ${CFLAGS} -c -o cube.o cube.c 9 ${CC} -D${CUBETYPE} ${CFLAGS} -c -o cube.o src/cube.c
10 10
11debugcube.o: clean 11debugcube.o: clean
12 ${CC} -D${CUBETYPE} ${DBGFLAGS} -c -o debugcube.o cube.c 12 ${CC} -D${CUBETYPE} ${DBGFLAGS} -c -o debugcube.o src/cube.c
13 13
14clean: 14clean:
15 rm -rf *.o 15 rm -rf *.o

Generated with cgit - Back to sebastiano.tronto.net