mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-03 04:17:52 +08:00
cc05b877a2
first commit acl to github
12 lines
179 B
Makefile
12 lines
179 B
Makefile
|
|
.PHONY = all clean
|
|
|
|
all:
|
|
@(cd gbfilter; make)
|
|
@(cd cgi; make)
|
|
@(cd http_access; make)
|
|
clean:
|
|
@(cd gbfilter; make clean)
|
|
@(cd cgi; make clean)
|
|
@(cd http_access; make clean)
|