clipmon 0.1.0

clipmon, or clipboard monitor is a wayland helper that keeps the selection when the application that copied exits.
1
2
3
4
5
6
7
8
9
10
11
12
13
DESTDIR?=/
PREFIX=/usr

clipmon:
	cargo build --release

build: target/release/clipmon

install: build
	@install -Dm755 target/release/clipmon ${DESTDIR}${PREFIX}/lib/clipmon
	@install -Dm644 clipmon.service ${DESTDIR}${PREFIX}/lib/systemd/user/clipmon.service

.PHONY: build install