CC	= gcc
CFLAGS	=


autolog:	autolog.c
	$(CC) $(CFLAGS) -o autolog autolog.c

install:	autolog
	cp autolog /usr/sbin

clean:
	rm autolog
