aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/mppa_k1c/Makefile
blob: d15928b8e7356282465d2e38c75139574d71d26b (plain)
1
2
3
4
5
6
7
8
9
CFILES=$(wildcard *.c)
SFILES=$(subst .c,.s,$(CFILES))

all: $(SFILES)

.SECONDARY:
%.S: %.c
	ccomp -O2 -S $< -o $@
	sed -i -e 's/i64_/__compcert_i64_/g' $@