##  $Id: Makefile,v 1.7 2002/01/27 21:56:47 vinocur Exp $
##
##  All the actual installation work of any files in the samples directory
##  is done via the site directory, so that one can maintain one's news
##  configuration in the site directory and use make commands to update the
##  server automatically.  All this Makefile does is run fixscript on a few
##  files that don't need the full power of configure (and clean up after
##  them on make clean).

include ../Makefile.global

ALL           = nnrpd_auth.pl nnrpd_access.pl

EXTRA         = inn.conf innreport.conf newsfeeds sasl.conf

all: $(ALL)

clean:
	rm -f $(ALL)

clobber: clean
	rm -f $(EXTRA)

install:


##  Build rules.

FIX             = $(FIXSCRIPT)

nnrpd_auth.pl:	nnrpd_auth.pl.in $(FIX)	; $(FIX) nnrpd_auth.pl.in
nnrpd_access.pl:	nnrpd_access.pl.in $(FIX) ; $(FIX) nnrpd_access.pl.in
