summaryrefslogtreecommitdiff
path: root/code/fe310/Makefile
blob: 404be4b58f93a13ec978435ebda34a158bc02c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
include common.mk

CFLAGS += -I./include

subdirs = drivers gloss metal eos

all: libeos.a

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

libeos.a:
	for i in $(subdirs); do \
		(cd $$i && $(MAKE) && cd ..) || exit; \
	done
	rm -f $@
	for i in $(subdirs); do \
		$(AR) rcs $@ $$i/*.o; \
	done

clean:
	for i in $(subdirs); do \
		(cd $$i && $(MAKE) clean && cd ..) || exit; \
	done
	rm -f *.o *.a