blob: 589b3f6da5b1c91306d67b23f8ffcd58e2452605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# vim: shiftwidth=4 softtabstop=4 tabstop=4 noexpandtab
DESTDIR="" # leave empty for the current system or provide a fakeroot here
PREFIX="/usr"
.PHONY: install
install:
install -Dm 644 config/default.json $(DESTDIR)/etc/xbackup/config.json
make -C src install DESTDIR=$(abspath $(DESTDIR))
|