added makefile! #3

Merged
crony merged 3 commits from TlasT/udict:makefile into main 2023-06-11 09:52:23 +02:00
Showing only changes of commit 5e522c78e8 - Show all commits

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
PREFIX = /usr/local
make:
@echo "usage: make [install|uninstall]"
install:
mkdir -p ${PREFIX}/bin
cp -f udict ${PREFIX}/bin
chmod 755 ${PREFIX}/bin/udict
uninstall:
rm -f ${PREFIX}/bin/udict