Changeset 20 in code
- Timestamp:
- Oct 6, 2023, 3:25:39 AM (20 months ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r18 r20 10 10 VERSION = `git describe --abbrev=0 --tags 2>/dev/null || echo "$VERSION"` 11 11 12 all: suwako suwako-mozhi12 all: suwako 13 13 14 14 suwako: 15 15 go build ${GOFLAGS} ./cmd/suwako 16 suwako-mozhi:17 go build ${GOFLAGS} ./cmd/suwako-mozhi18 16 clean: 19 rm -f suwako suwako-mozhi17 rm -f suwako 20 18 install: 21 19 install -Dm0755 suwako ${PREFIX}/bin/suwako 22 install -Dm0755 suwako-mozhi ${PREFIX}/bin/suwako-mozhi23 20 install -Dm0644 suwako.1 ${PREFIX}/share/man/man1/suwako.1 24 21 uninstall: 25 22 rm -f ${PREFIX}/bin/suwako 26 rm -f ${PREFIX}/bin/suwako-mozhi27 23 rm -f ${PREFIX}/share/man/man1/suwako.1 -
trunk/README.md
r19 r20 8 8 9 9 ## Environment variables 10 * SUWAKO_ENGINE 11 * SUWAKO_INSTANCE 12 13 ## Flavors 14 * `suwako` works with [SimplyTranslate](https://codeberg.org/ManeraKai/simplytranslate) 15 * `suwako-mozhi` works with [mozhi](https://codeberg.org/aryak/mozhi) 16 17 Both are functionally the same otherwise. 10 * SUWAKO\_ENGINE 11 * SUWAKO\_INSTANCE
Note:
See TracChangeset
for help on using the changeset viewer.