1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
## $Id: Makefile 7650 2007-08-20 10:08:33Z iulius $
##
## 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 fixconfig or
## fixscript on a few files that need configure results (and remove them on
## make clean).
include ../Makefile.global
top = ..
ALL = buffindexed.conf inn.conf innreport.conf newsfeeds \
nnrpd_auth.pl nnrpd_access.pl nnrpd_auth_wrapper.pl \
nnrpd_access_wrapper.pl
all: $(ALL)
install:
bootstrap:
clean clobber distclean maintclean:
rm -f $(ALL)
depend:
profiled: all
$(FIXCONFIG) $(FIXSCRIPT):
@echo Run configure before running make. See INSTALL for details.
@exit 1
## Build rules.
FIXC = $(FIXCONFIG)
FIXS = $(FIXSCRIPT)
buffindexed.conf: buffindexed.conf.in $(FIXC) ; $(FIXC) $@.in
inn.conf: inn.conf.in $(FIXC) ; $(FIXC) $@.in
innreport.conf: innreport.conf.in $(FIXC) ; $(FIXC) $@.in
newsfeeds: newsfeeds.in $(FIXC) ; $(FIXC) $@.in
nnrpd_auth.pl: nnrpd_auth.pl.in $(FIXS) ; $(FIXS) $@.in
nnrpd_access.pl: nnrpd_access.pl.in $(FIXS) ; $(FIXS) $@.in
nnrpd_auth_wrapper.pl: nnrpd_auth_wrapper.pl.in $(FIXS) ; $(FIXS) $@.in
nnrpd_access_wrapper.pl: nnrpd_access_wrapper.pl.in $(FIXS) ; $(FIXS) $@.in
|