summaryrefslogtreecommitdiff
path: root/etc/Makefile
blob: f2d624337250d7239f57ed902c0c9e823c4dd240 (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 0644  $< $@