summaryrefslogtreecommitdiff
path: root/fw/fe310/bsp/metal/Makefile
blob: 32acfd278509849e7af8414cbc2d5ca04db51040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
include ../../common.mk
CFLAGS += -I../include -I../drivers

%.o: %.c
	$(CC) $(CFLAGS) -c $<

%.o: %.S
	$(CC) $(CFLAGS) -c $<

all: entry.o metal.o

clean:
	rm -f *.o