mirror of
https://github.com/alvierahman90/otfm-python.git
synced 2025-01-12 02:04:20 +00:00
10 lines
199 B
Makefile
10 lines
199 B
Makefile
|
include config.mk
|
||
|
|
||
|
install:
|
||
|
mkdir -p ${DESTDIR}${PREFIX}/bin/
|
||
|
cp -f otfm-python ${DESTDIR}${PREFIX}/bin/
|
||
|
chmod 755 ${DESTDIR}${PREFIX}/bin/
|
||
|
|
||
|
uninstall:
|
||
|
rm -f ${DESTDIR}${PREFIX}/bin/otfm-python
|