diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-08-18 14:26:45 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-08-18 14:26:45 +0200 |
| commit | 18c9a8b8905304cf5f8fc15825769046a3144866 (patch) | |
| tree | a7807bb32b0a5d9ded7d3cedccc598f64a9b00fe /Makefile | |
| parent | f25a10e19eca294c4e6a99e4f80ce5cfd11a0e5f (diff) | |
| download | nissy-core-18c9a8b8905304cf5f8fc15825769046a3144866.tar.gz nissy-core-18c9a8b8905304cf5f8fc15825769046a3144866.zip | |
Reorganized folder structure
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 src/cube.c | 6 | ${CC} -D${CUBETYPE} ${CFLAGS} -c -S -o cube.s src/nissy.c |
| 7 | 7 | ||
| 8 | cube.o: clean | 8 | cube.o: clean |
| 9 | ${CC} -D${CUBETYPE} ${CFLAGS} -c -o cube.o src/cube.c | 9 | ${CC} -D${CUBETYPE} ${CFLAGS} -c -o cube.o src/nissy.c |
| 10 | 10 | ||
| 11 | debugcube.o: clean | 11 | debugcube.o: clean |
| 12 | ${CC} -D${CUBETYPE} ${DBGFLAGS} -c -o debugcube.o src/cube.c | 12 | ${CC} -D${CUBETYPE} ${DBGFLAGS} -c -o debugcube.o src/nissy.c |
| 13 | 13 | ||
| 14 | clean: | 14 | clean: |
| 15 | rm -rf *.o run | 15 | rm -rf *.o run |
