acl/lib_acl_cpp/samples/socket/Makefile

10 lines
125 B
Makefile
Raw Normal View History

.PHONY = all clean
all:
@(cd client; make)
@(cd server; make)
clean:
@(cd client; make clean)
@(cd server; make clean)