
Signed-off-by: Aoi K <koizumi.aoi@chaotic.ninja> git-svn-id: file:///srv/svn/repo/mima/trunk@16 d2428f92-30f9-164c-8098-19ee57ce342c
13 lines
344 B
Makefile
13 lines
344 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 -Dm0755 antifetch ${PREFIX}/bin/antifetch
|
|
install -Dm0644 antifetch.1 ${PREFIX}/share/man/man1/antifetch.1
|
|
uninstall:
|
|
rm ${PREFIX}/bin/antifetch ${PREFIX}/share/man/man1/antifetch.1
|