.PHONY: all clean

CFLAGS ?= -Wall -Werror -O2
LDLIBS += -lzt

all: demo test-root-user
clean:
	rm -f *.o demo test-root-user
