# # Makefile for h subdirectory # # $Id$ # SHELL = /bin/sh srcdir = @srcdir@ VPATH = @srcdir@ # header files included in distribution FILES = 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 Makefile.in \ README.developers README.history 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: # ========== 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_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status distdir = ../`cat ../distname`/$(subdir) nmhdist: @echo "Copying distribution files in $(subdir)" @for file in $(DIST); do \ cp -p $(srcdir)/$$file $(distdir); \ done