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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#
# Makefile for etc subdirectory
#
SHELL = /bin/sh
top_srcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = @libdir@
etcdir = @sysconfdir@
mailspool = @mailspool@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_DATA = @INSTALL_DATA@
SED = sed
.SUFFIXES:
# static configuration, format, and components files
STATIC_FILES = components digestcomps distcomps forwcomps \
mhl.body mhl.format mhl.forward mhl.headers \
mhl.reply mhl.whatnow2 rcvdistcomps rcvdistcomps.outbox \
replcomps replgroupcomps scan.MMDDYY scan.YYYYMMDD \
scan.nmh scan.mailx scan.nomime scan.size scan.time \
scan.timely scan.unseen scan.meillo scan.default \
mhn.defaults repllistcomps pick.default
# ========= DEPENDENCIES FOR BUILDING ==========
all:
install: install-etc-files
install-etc-files:
mkdir -p $(DESTDIR)$(etcdir)
for file in $(STATIC_FILES); do \
if [ -f "$(DESTDIR)$(etcdir)/$$file" ]; then \
if cmp -s "$(srcdir)/$$file" "$(DESTDIR)$(etcdir)/$$file" ; then \
:; \
else \
$(INSTALL_DATA) "$(srcdir)/$$file" "$(DESTDIR)$(etcdir)/$$file.dist"; \
echo "$(DESTDIR)$(etcdir)/$$file has local modifications; installing with .dist suffix"; \
fi; \
else \
$(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(etcdir)/$$file; \
fi; \
done
uninstall: uninstall-etc-files
uninstall-etc-files:
for file in $(STATIC_FILES) ; do \
rm -f $(DESTDIR)$(etcdir)/$$file; \
done
# ========== DEPENDENCIES FOR CLEANUP ==========
mostlyclean:
rm -f *~
clean: mostlyclean
distclean: clean
rm -f Makefile
realclean: distclean
superclean: realclean
# ========== DEPENDENCIES FOR MAINTENANCE ==========
subdir = etc
Makefile: Makefile.in ../config.status
cd .. && ./config.status $(subdir)/$@
|