19 lines
604 B
Makefile
19 lines
604 B
Makefile
|
name = backbit
|
||
|
root = "-o root -g root"
|
||
|
|
||
|
all:
|
||
|
echo "Program is compiled, run 'make install'"
|
||
|
|
||
|
install:
|
||
|
install -dm700 $(root) /var/log/$(name)
|
||
|
install -Dm755 $(root) src/backbit* $(DESTDIR)/bin
|
||
|
install -dm755 $(root) /etc/$(name)/{db,dir}
|
||
|
install -Dm644 $(root) conf/before.sh-sample /etc/$(name)
|
||
|
install -Dm644 $(root) conf/after.sh-sample /etc/$(name)
|
||
|
install -Dm644 $(root) conf/conf-dir-sample /etc/$(name)
|
||
|
install -Dm644 $(root) conf/conf-db-sample /etc/$(name)
|
||
|
|
||
|
uninstall:
|
||
|
rm -f $(DESTDIR)/bin/backbit{,dir,db}
|
||
|
echo "There may be files remaining in /etc/backbit and /var/log/backbit"
|