summaryrefslogtreecommitdiff
path: root/code/fe310/metal/Makefile
blob: f4d0992a39079bf33096e44b2c942af5ca87cef3 (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