# Makefile for webstats

CC= /mit/gnu/bin/gcc
CFLAGS=-g -Wall $(CDEFS)

all: web_count

web_count: web_count.o
	${CC} ${LDFLAGS} -o $@ $^
