dashboard
repositories
filestore
activity
search
login
fcloud
/
qtl
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
1. 允许绑定字段到std::optional和std::any 2. 增加函数bind_fields可以一次绑定到多个字段 3. 查询函数返回数据库...
znone
2019-12-07
14337cf5b302c5385f0ae1393caf6df7e83fc539
[fcloud/qtl.git]
/
test
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
PRJ = $(wildcard *.mak)
all : $(PRJ)
@for i in $(PRJ); do \
make -f $$i all;\
done
clean: $(PRJ)
@for i in $(PRJ); do \
make -f $$i clean; \
done