1CFLAGS = -g -Wall
2LDFLAGS = -lacl
3
4PROGS = get-acl copy-acl set-acl copyperm
5
6all: $(PROGS)
7
8clean:
9	rm -f $(PROGS)
10