mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 19:07:35 +08:00
11 lines
175 B
Makefile
11 lines
175 B
Makefile
.PHONY = all clean
|
|
all:
|
|
@(cd httpd_upload; make)
|
|
@(cd httpd_download; make)
|
|
|
|
clean:
|
|
@(cd httpd_upload; make clean)
|
|
@(cd httpd_download; make clean)
|
|
|
|
rb rebuild: clean all
|