# Set to your favorite C compiler and flags
CC=gcc
CFLAGS=-s -O2 -Wall -pedantic

# End of settable values

webfiltd:
	$(CC) $(CFLAGS) -lcrypt -o webfiltd webfiltd.c md5.c

webfilt:
	$(CC) $(CFLAGS) -o webfilt.cgi webfilt.c

clean:
	rm -f webfiltd webfilt.cgi *.o

