acl/lib_acl_cpp/samples/tcp_pool/Makefile

10 lines
128 B
Makefile

all:
@(cd server; make)
@(cd client; make)
clean cl:
@(cd server; make clean)
@(cd client; make clean)
rebuild rb: cl all