make: Add support for .crontab files

This commit is contained in:
Jan Lindemann 2010-06-10 10:00:29 +00:00 committed by Jan Lindemann
commit dba01ffe0f
5 changed files with 23 additions and 2 deletions

View file

@ -394,6 +394,13 @@ INSTALL_LOGROTDIR = $(LOGROT_DIR)
INSTALLED_LOGROT = $(addprefix $(INSTALL_LOGROTDIR)/,$(LOGROT))
endif
# -- CRONTAB
ifneq ($(TARGET),mingw)
CRONTAB += $(wildcard *.crontab)
BUILD_CRONTABDIR = $(TOPDIR)/cron.d
INSTALLED_CRONTAB = $(addprefix $(INSTALL_CRONTABDIR)/,$(CRONTAB))
endif
# ==
ifeq ($(DEVELOPMENT),true)