summaryrefslogtreecommitdiff
path: root/fw/fe310/fsfat/Makefile
blob: a20a5be2605c69e149d956f6ba15acb375ee8b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include ../common.mk

CFLAGS += -I. -I..

obj = diskio.o ff.o


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

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

all: $(obj)

clean:
	rm -f *.o