mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-12-01 09:02:04 +03:00
15 lines
213 B
Makefile
15 lines
213 B
Makefile
CC=arm-none-eabi-gcc
|
|
all: $(patsubst %c,%exe,$(wildcard *.c))
|
|
|
|
%.exe: %.s
|
|
$(CC) -fno-stack-protector -nostdlib $< -o $@
|
|
|
|
%.s: %.c
|
|
$(CC) -fno-stack-protector -S -c $< -o $@
|
|
|
|
.PRECIOUS: %.s
|
|
|
|
clean:
|
|
rm *.s *.exe
|
|
|