13 lines
342 B
Makefile
13 lines
342 B
Makefile
PREFIX=/usr/local
|
|
|
|
build:
|
|
go build -v ./cmd/antifetch
|
|
mandoc -T man < ./man/antifetch.1.mdoc > antifetch.1
|
|
clean:
|
|
rm antifetch antifetch.1
|
|
install:
|
|
install -m0755 antifetch ${PREFIX}/bin/antifetch
|
|
install -m0644 antifetch.1 ${PREFIX}/share/man/man1/antifetch.1
|
|
uninstall:
|
|
rm ${PREFIX}/bin/antifetch ${PREFIX}/share/man/man1/antifetch.1
|