Consistency is the last refuge of the unimaginative. -- Oscar Wilde

git-svn-id: file:///srv/svn/repo/mima/trunk@5 d2428f92-30f9-164c-8098-19ee57ce342c
This commit is contained in:
novaburst 2022-05-12 17:53:06 +00:00
parent abe29a142f
commit e82c2b2914

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
PREFIX=/usr/local
OUTPUT=antifetch
build:
go build -v -o ${OUTPUT}
clean:
rm -f ${OUTPUT}
install:
install -m0755 ${OUTPUT} ${DESTDIR}${PREFIX}/bin/${OUTPUT}
uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/${OUTPUT}