blob: a81c513d6158381a907be051102c804a079f0f75 [file] [log] [blame]
SUBDIRS := \
mtk_mnld \
gps_hal \
gnss_test \
gpslog \
TARGET := \
gps_hal/libgnsshal.so \
mtk_mnld/mnld \
gnss_test/mnld_test \
gpslog/gpslog \
all:${TARGET}
.PHONY : all
${TARGET}:$(SUBDIRS)
@echo $(SUBDIRS)
$(SUBDIRS):
make -C $@
.PHONY : $(SUBDIRS)
.PHONY : clean
clean:
for dir in $(SUBDIRS);\
do $(MAKE) -C $$dir clean||exit 1;\
done