-
Notifications
You must be signed in to change notification settings - Fork 29
/
config.mk
54 lines (50 loc) · 1.27 KB
/
config.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# vim:set ts=8 sts=8 sw=8 tw=0:
#
# デフォルトコンフィギュレーションファイル
#
# Last Change: 19-Jun-2004.
# Base Idea: AIDA Shinra
# Maintainer: MURAOKA Taro <koron@tka.att.ne.jp>
srcdir = ./src/
objdir = ./build/object/
outdir = ./build/
##############################################################################
# インストールディレクトリの設定
#
prefix = /usr/local
bindir = $(prefix)/bin
libdir = $(prefix)/lib
incdir = $(prefix)/include
# 警告: $(dictdir)と$(docdir)はアンインストール実行時にディレクトリごと消去
# されます。
dictdir = $(prefix)/share/migemo
docdir = $(prefix)/doc/migemo
##############################################################################
# コマンド設定
#
RM = rm -f
CP = cp
MKDIR = mkdir -p
RMDIR = rm -rf
CTAGS = ctags
HTTP = curl -O
#HTTP = wget
PERL = perl
BUNZIP2 = bzip2 -d
GUNZIP = gzip -d
FILTER_CP932 = qkc -q -u -s
FILTER_EUCJP = qkc -q -u -e
FILTER_UTF8 = iconv -t utf-8 -f cp932
#FILTER_CP932 = nkf -s
#FILTER_EUCJP = nkf -e
INSTALL = /usr/bin/install -c
#INSTALL = /usr/ucb/install -c
INSTALL_PROGRAM = $(INSTALL) -m 755
INSTALL_DATA = $(INSTALL) -m 644
##############################################################################
# 定数
#
O = o
EXE =
CONFIG_DEFAULT = compile/config_default.mk
CONFIG_IN = compile/config.mk.in