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
|
## $Id: Makefile 6299 2003-04-20 19:04:14Z vinocur $
##
## 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
top = ..
ALL = nnrpd_auth.pl nnrpd_access.pl \
nnrpd_auth_wrapper.pl nnrpd_access_wrapper.pl
EXTRA = inn.conf innreport.conf newsfeeds sasl.conf
all: $(ALL) $(EXTRA)
clean:
rm -f $(ALL)
clobber distclean: clean
rm -f $(EXTRA)
install:
depend:
profiled: all
$(EXTRA) $(FIXSCRIPT):
@echo Run configure before running make. See INSTALL for details.
@exit 1
## Build rules.
FIX = $(FIXSCRIPT)
nnrpd_auth.pl: nnrpd_auth.pl.in $(FIX) ; $(FIX) $@.in
nnrpd_access.pl: nnrpd_access.pl.in $(FIX) ; $(FIX) $@.in
nnrpd_auth_wrapper.pl: nnrpd_auth_wrapper.pl.in $(FIX) ; $(FIX) $@.in
nnrpd_access_wrapper.pl: nnrpd_access_wrapper.pl.in $(FIX) ; $(FIX) $@.in
|