blob: a81c513d6158381a907be051102c804a079f0f75 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001SUBDIRS := \
2 mtk_mnld \
3 gps_hal \
4 gnss_test \
5 gpslog \
6
7TARGET := \
8 gps_hal/libgnsshal.so \
9 mtk_mnld/mnld \
10 gnss_test/mnld_test \
11 gpslog/gpslog \
12
13all:${TARGET}
14.PHONY : all
15${TARGET}:$(SUBDIRS)
16 @echo $(SUBDIRS)
17
18$(SUBDIRS):
19 make -C $@
20.PHONY : $(SUBDIRS)
21
22.PHONY : clean
23clean:
24 for dir in $(SUBDIRS);\
25 do $(MAKE) -C $$dir clean||exit 1;\
26 done