summaryrefslogtreecommitdiff
path: root/etc/Makefile
blob: f0aa725b8aa0eaa31e532b82f637a754e2b96d16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
sysconfdir ?= /etc

ETC_FILES = $(filter-out Makefile , $(wildcard *))
ETC_INSTALLABLES = $(patsubst %, $(DESTDIR)$(sysconfdir)/%, $(ETC_FILES))

INSTALLABLES = $(ETC_INSTALLABLES)

.PHONY:	install
install:	$(INSTALLABLES)

$(DESTDIR)$(sysconfdir)/%: %
	install -D -m 0600  $< $@