diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-05-10 08:55:03 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-05-10 08:55:03 +0200 |
| commit | 75966319fd5891c2c1bd35b1f7c93eab172fd28e (patch) | |
| tree | 850a69906c7140be36670f2014e78ff91a96ab33 /Makefile | |
| parent | 15a072db18e441db5aa9e5339341fa1a466b504a (diff) | |
| download | nissy-core-75966319fd5891c2c1bd35b1f7c93eab172fd28e.tar.gz nissy-core-75966319fd5891c2c1bd35b1f7c93eab172fd28e.zip | |
Moved to src/
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -3,13 +3,13 @@ include config.mk | |||
| 3 | all: cube.o debugcube.o | 3 | all: cube.o debugcube.o |
| 4 | 4 | ||
| 5 | cube.s: clean | 5 | cube.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 | ||
| 8 | cube.o: clean | 8 | cube.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 | ||
| 11 | debugcube.o: clean | 11 | debugcube.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 | ||
| 14 | clean: | 14 | clean: |
| 15 | rm -rf *.o | 15 | rm -rf *.o |
