android驱动代码测试...

This commit is contained in:
gatieme
2017-05-06 20:42:33 +08:00
parent 3e0edb0a7f
commit 1364b409e0
18 changed files with 1862 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#direntorys
HELLO_DIR=hello
CPLD_DIR=cpld
FPGA_DIR=fpga
TEST_MODULE_DIR=test_module
DIRS=$(HELLO_DIR) $(CPLD_DIR) $(FPGA_DIR) $(TEST_MODULE_DIR)
SUBDIRS=$(DIRS)
.PHONY:all $(SUBDIRS)
all: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
@echo "=======BUILD $@ SUCCESS======="
#all :
# for i in $(DIRS); do \
# (cd $$i && echo "making $$i" && $(MAKE) ) || exit 1; \
# done
clean:
for i in $(DIRS); do \
(cd $$i && echo "cleaning $$i" && $(MAKE) clean) || exit 1; \
done
install :
for i in $(DIRS); do \
(cd $$i && echo "install $$i" && $(MAKE) install) || exit 1; \
done