mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-12-18 11:31:35 +03:00
fcb694ccb9
It doesn't pass yet. It is hung up on an unsupported register type (Crrc, used in a compare).
15 lines
219 B
Makefile
15 lines
219 B
Makefile
CC=powerpc64-linux-gnu-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
|
|
|