source: code/trunk/Makefile@ 55

Last change on this file since 55 was 55, checked in by yakumo.izuru, 17 months ago

「swagger」サポートを削除し、あちこちのバグを修正

File size: 398 bytes
Line 
1PREFIX ?= /usr/local
2
3build:
4 go build -v ./cmd/simplytranslate
5clean:
6 rm -f simplytranslate
7install:
8 install -Dm0755 simplytranslate ${DESTDIR}${PREFIX}/bin/simplytranslate
9 mkdir -p ${DESTDIR}${PREFIX}/share/simplytranslate
10 cp -R static views ${DESTDIR}${PREFIX}/share/simplytranslate
11uninstall:
12 rm -f ${DESTDIR}${PREFIX}/bin/simplytranslate
13 rm -rf ${DESTDIR}${PREFIX}/share/simplytranslate
Note: See TracBrowser for help on using the repository browser.