12 lines
233 B
Makefile
12 lines
233 B
Makefile
all:
|
|
@echo "nothing to do"
|
|
|
|
install:
|
|
cp bin/yait /usr/local/bin
|
|
cp yait.1 /usr/local/share/man/man1/yait.1
|
|
chmod 644 /usr/local/share/man/man1/yait.1
|
|
|
|
uninstall:
|
|
$(RM) /usr/local/bin/yait
|
|
$(RM) /usr/local/share/man/man1/yait.1
|