summaryrefslogtreecommitdiff
path: root/cron
diff options
context:
space:
mode:
Diffstat (limited to 'cron')
-rw-r--r--cron/Makefile.in13
1 files changed, 8 insertions, 5 deletions
diff --git a/cron/Makefile.in b/cron/Makefile.in
index 99a496b18..5cf5301f5 100644
--- a/cron/Makefile.in
+++ b/cron/Makefile.in
@@ -40,16 +40,15 @@ CRONDIR= $(prefix)/cron
SHELL= /bin/sh
-SCRIPTS= checkdbs crontab.in mailpasswds senddigests gate_news \
-nightly_gzip bumpdigests
+PROGRAMS= checkdbs mailpasswds senddigests gate_news \
+ nightly_gzip bumpdigests
+FILES= crontab.in
# Modes for directories and executables created by the install
# process. Default to group-writable directories but
# user-only-writable for executables.
-DIRMODE= 775
EXEMODE= 755
FILEMODE= 644
-INSTALL_PROGRAM=$(INSTALL) -m $(EXEMODE)
# Rules
@@ -57,10 +56,14 @@ INSTALL_PROGRAM=$(INSTALL) -m $(EXEMODE)
all:
install:
- for f in $(SCRIPTS); \
+ for f in $(FILES); \
do \
$(INSTALL) -m $(FILEMODE) $$f $(CRONDIR); \
done
+ for f in $(PROGRAMS); \
+ do \
+ $(INSTALL) -m $(EXEMODE) $$f $(CRONDIR); \
+ done
finish: