SHELL=/bin/sh
CFLAGS=-O -DRNEWS=\"/local/byname/notes/lib/rnews\"
DESTDIR=/local/byname/notes/lib
DESTUSR=notes
DESTGRP=notes
DESTMOD=770

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

install:	nntpgimme
	install -s -m $(DESTMOD) -o $(DESTUSR) -g $(DESTGRP) \
		nntpgimme $(DESTDIR)

clean:
	-rm -f *.o nntpxfer make*.out

distrib: clean
	rm -rf SCCS

check:;
