source: code/trunk/Makefile@ 77

Last change on this file since 77 was 77, checked in by yakumo.izuru, 4 days ago

決して発見されてはならない巻物。

File size: 563 bytes
Line 
1OS=`uname -s`
2MACHINE=`uname -m`
3DATE=`date -r _build/default/cmd/txt/txt.exe +%Y%m%d`
4PREFIX=/usr/local
5
6CC=cc
7LD=cc
8
9all:
10 @dune build
11deps:
12 @opam install dune ocurl cmdliner msgpck
13txt:
14 @dune build cmd/txt/txt.exe
15clean:
16 @dune clean
17dist:
18 @dune build
19 @cp _build/default/cmd/txt/txt.exe txt.exe
20 @strip txt.exe
21 @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE}" txt.exe LICENSE README.md
22 @rm txt.exe
23
24txt_init:
25 @dune build cmd/txt_init/txt_init.exe
26install:
27 @dune install --prefix ${PREFIX}
28uninstall:
29 @dune uninstall --prefix ${PREFIX}
30.PHONY: txt txt_init
Note: See TracBrowser for help on using the repository browser.