diff options
| author | Nakidai <nakidai@disroot.org> | 2025-01-07 23:56:21 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2025-01-08 00:11:47 +0300 |
| commit | f1f118eab699b396ecfa21dff9c553bed876e3a8 (patch) | |
| tree | 85c569bb4714d1d711951a83c32e1dd24e9f217f /Makefile | |
| download | tr2cyr-f1f118eab699b396ecfa21dff9c553bed876e3a8.tar.gz tr2cyr-f1f118eab699b396ecfa21dff9c553bed876e3a8.zip | |
Add code
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..607a790 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +DESTDIR ?= /usr/local + +all: tr2cyr + +README: README.7 + mandoc -Tascii $< | col -b > $@ + +install: tr2cyr + install -d ${DESTDIR}/bin + install -m755 tr2cyr ${DESTDIR}/bin + +uninstall: + ${RM} ${DESTDIR}/bin/tr2cyr + +clean: + ${RM} tr2cyr |