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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#
# Makefile for h subdirectory
#
# $Id: Makefile.in,v 1.7 2005/11/08 16:51:37 opk Exp $
#
SHELL = /bin/sh
srcdir = @srcdir@
VPATH = @srcdir@
# header files included in distribution
FILES = COMPLETION-BASH COMPLETION-TCSH COMPLETION-ZSH \
ChangeLog_MH-3_to_MH-6.6 ChangeLog_MH-6.7.0_to_MH-6.8.4.html \
DIFFERENCES FAQ MAIL.FILTERING MAILING-LISTS README.about \
README-ATTACHMENTS README-HOOKS README.SASL \
README.developers README.manpages TODO
# auxiliary files
AUX = Makefile.in
# all files in this directory included in the distribution
DIST = $(FILES) $(AUX)
# ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========
all:
install:
uninstall:
lint:
# ========== DEPENDENCIES FOR CLEANUP ==========
mostlyclean:
rm -f *~
clean: mostlyclean
distclean: clean
rm -f Makefile
realclean: distclean
superclean: realclean
# ========== DEPENDENCIES FOR MAINTENANCE ==========
subdir = docs
Makefile: Makefile.in ../config.status
cd .. && ./config.status $(subdir)/$@
distdir = ../`cat ../distname`/$(subdir)
nmhdist:
@echo "Copying distribution files in $(subdir)"
@for file in $(DIST); do \
cp -p $(srcdir)/$$file $(distdir); \
done
|