blob: 17d810399bf189b1fd60042d8fb13e37a6e0eb90 (
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
26
27
28
29
|
include common.mk
MAKEFLAGS += -I$(fe310_dir)
include $(crypto_dir)/crypto_obj.mk
obj_crypto = $(addprefix $(crypto_dir)/,$(obj_dep))
subdirs = bsp/drivers bsp/gloss bsp/metal eos eos/i2c eos/eve eos/eve/screen eos/eve/widget eos/app fsfat
# $(info INFO $(obj_crypto))
all: libeos.a
%.o: %.c
$(CC) $(CFLAGS) -c $<
libeos.a:
for i in $(subdirs) $(crypto_dir); do \
(cd $$i && $(MAKE)) || exit; \
done
rm -f $@
for i in $(subdirs); do \
$(AR) rcs $@ $$i/*.o; \
done
$(AR) rcs $@ $(obj_crypto)
clean:
for i in $(subdirs) $(crypto_dir); do \
(cd $$i && $(MAKE) clean) || exit; \
done
rm -f *.o *.a
|