Added intermediate assembly compilation.
This commit is contained in:
parent
7815201407
commit
ce5f413274
|
@ -14,5 +14,8 @@ LFLAGS = -L $(SUPPORT_FILE_DIRECTORY) -T $(DEVICE).ld
|
||||||
all: ${OBJECTS}
|
all: ${OBJECTS}
|
||||||
$(CC) $(CFLAGS) $(LFLAGS) $? -o main.elf
|
$(CC) $(CFLAGS) $(LFLAGS) $? -o main.elf
|
||||||
|
|
||||||
|
main: main.c
|
||||||
|
$(CC) $(CFLAGS) $(LFLAGS) $? -S -o main.asm
|
||||||
|
|
||||||
debug: all
|
debug: all
|
||||||
$(GDB) main.elf
|
$(GDB) main.elf
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue