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