new-home-core 0.1.3

New Home Core is, as the name says, the core of the whole New Home eco system. It manages all New Home applications in your home.
Documentation
.PHONY: default
.PHONY: install
.PHONY: uninstall

default:
	@echo "You have to specify install or uninstall."

install:
	cargo check --all
	cargo build --release
	install systemd/new-home-core.service /usr/lib/systemd/system/new-home-core.service
	install target/release/new-home-core /usr/bin/new-home-core
	mkdir -p /etc/new-home-core

uninstall:
	rm /usr/lib/systemd/system/new-home-core.service
	rm /usr/bin/new-home-core
	rm -r /etc/new-home-core