summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/Makefile
blob: b9ba89afcd29128c43e080708d3f71f8950ff8a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include ../common.mk
CFLAGS += -I$(bsp_dir)/include -I$(bsp_dir)/drivers

obj = eos.o msgq.o event.o unicode.o
lib = ../libeos.a


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

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

all: $(lib)

$(lib): $(obj)
	$(AR) rcs $@ $(obj)

clean:
	rm -f *.o $(lib)