CC=gcc
FLAGS=

shadowread: shadowread.c
	$(CC) $(FLAGS) -o shadowread shadowread.c

install:
	chown root:root shadowread
	chmod 755 shadowread
	chmod u+s shadowread
