CPP        = gcc
CFLAGS     = -O2 -DUNIX -Wall -pipe -fomit-frame-pointer
INCLPATH   = -I/home/bbs/include -I.
LDFLAGS    = -L/home/bbs/lib -ldd

all:	hinews

clean:
	rm -f *~ *.o hinews

hinews: hinews.c
	$(CPP) -o $@ $< $(INCLPATH) $(LDFLAGS)
