-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.in
200 lines (177 loc) · 8.53 KB
/
Makefile.in
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#######################################################
# installed directories
#######################################################
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
datadir=@datadir@
mandir=@mandir@
libdir=@libdir@
sharedstatedir=@sharedstatedir@
sysconfdir=@sysconfdir@/xyzsh
includedir=@includedir@/xyzsh
datarootdir=@datarootdir@
docdir=@datadir@/doc/xyzsh
##########################################################
# environmnet variables
##########################################################
CC=@CC@
INSTALL=@INSTALL@
CFLAGS=@CFLAGS@
LIBS=@LIBS@
OBJ=@OBJ@
EXTOBJ=@EXTOBJ@
LIBXYZSHSO=@LIBXYZSHSO@
LIBXYZSHSO1=@LIBXYZSHSO1@
LIBXYZSHA=@LIBXYZSHA@
LIBXYZSHASTRIP=@LIBXYZSHASTRIP@
DESTDIR=
SYSTEM_MIGEMODIR=@SYSTEM_MIGEMODIR@
SO_VERSION=@SO_VERSION@
EXTDIR=@EXTDIR@
##########################################################
# main
##########################################################
all: lib xyzsh extension
rm -f install
xyzsh: config.h src/main.c $(LIBXYZSHSO) $(LIBXYZSHA)
$(CC) -o xyzsh src/main.c $(CFLAGS:-static=) -lxyzsh $(LIBS)
lib: $(LIBXYZSHSO1) $(LIBXYZSHA)
rm -f install
lib-install:
if [ -z "$(DESTDIR)" ]; then make lib-normal-install; else make lib-dest-install; fi
lib-normal-install:
mkdir -p "$(libdir)"
if [ $(LIBXYZSHA) = libxyzsh.a ]; then $(INSTALL) -m 644 $(LIBXYZSHASTRIP) libxyzsh.a "$(libdir)"; fi
if [ $(LIBXYZSHSO) = libxyzsh.so ]; then if echo $(CFLAGS) | grep -q MDEBUG; then $(INSTALL) -m 755 libxyzsh.so.$(SO_VERSION) "$(libdir)"; else $(INSTALL) -s -m 755 libxyzsh.so.$(SO_VERSION) "$(libdir)"; fi; elif [ $(LIBXYZSHSO) = libxyzsh.dylib ]; then $(INSTALL) -m 755 libxyzsh.$(SO_VERSION).dylib "$(libdir)"; fi
if [ $(LIBXYZSHSO) = libxyzsh.so ]; then ln -s -f libxyzsh.so.$(SO_VERSION) "$(libdir)"/libxyzsh.so.2; elif [ $(LIBXYZSHSO) = libxyzsh.dylib ]; then ln -s -f libxyzsh.$(SO_VERSION).dylib "$(libdir)"/libxyzsh.2.dylib; fi
if [ $(LIBXYZSHSO) = libxyzsh.so ]; then ln -s -f libxyzsh.so.$(SO_VERSION) "$(libdir)"/libxyzsh.so; elif [ $(LIBXYZSHSO) = libxyzsh.dylib ]; then ln -s -f libxyzsh.$(SO_VERSION).dylib "$(libdir)"/libxyzsh.dylib; fi
lib-dest-install:
mkdir -p "$(DESTDIR)/$(libdir)"
if [ "$(LIBXYZSHA)" = libxyzsh.a ]; then $(INSTALL) -m 644 $(LIBXYZSHASTRIP) libxyzsh.a "$(DESTDIR)/$(libdir)"; fi
if [ "$(LIBXYZSHSO)" = libxyzsh.so ]; then if echo $(CFLAGS) | grep -q MDEBUG; then $(INSTALL) -m 755 libxyzsh.so.$(SO_VERSION) "$(DESTDIR)/$(libdir)"; else $(INSTALL) -s -m 755 libxyzsh.so.$(SO_VERSION) "$(DESTDIR)/$(libdir)"; fi; elif [ "$(LIBXYZSHSO)" = libxyzsh.dylib ]; then $(INSTALL) -m 755 libxyzsh.$(SO_VERSION).dylib "$(DESTDIR)/$(libdir)"; fi
if [ "$(LIBXYZSHSO)" = libxyzsh.so ]; then ln -s -f libxyzsh.so.$(SO_VERSION) "$(DESTDIR)/$(libdir)"/libxyzsh.so.2; elif [ "$(LIBXYZSHSO)" = libxyzsh.dylib ]; then ln -s -f libxyzsh.$(SO_VERSION).dylib "$(DESTDIR)/$(libdir)"/libxyzsh.2.dylib; fi
if [ "$(LIBXYZSHSO)" = libxyzsh.so ]; then ln -s -f libxyzsh.so.$(SO_VERSION) "$(DESTDIR)/$(libdir)"/libxyzsh.so; elif [ "$(LIBXYZSHSO)" = libxyzsh.dylib ]; then ln -s -f libxyzsh.$(SO_VERSION).dylib "$(DESTDIR)/$(libdir)"/libxyzsh.dylib; fi
########################################################
# xyzsh libraries
########################################################
libxyzsh.so.$(SO_VERSION): $(OBJ)
gcc -shared -o libxyzsh.so.$(SO_VERSION) $(OBJ) -lc $(LIBS) $(CFLAGS)
libxyzsh.so: libxyzsh.so.$(SO_VERSION)
ln -s libxyzsh.so.$(SO_VERSION) libxyzsh.so.2
ln -s libxyzsh.so.$(SO_VERSION) libxyzsh.so
libxyzsh.a: $(OBJ)
ar rc libxyzsh.a $(OBJ)
ranlib libxyzsh.a
# strip libxyzsh.a
########################################################
# xyzsh libraries on Darwin
########################################################
libxyzsh.$(SO_VERSION).dylib: $(OBJ)
gcc -dynamiclib -o libxyzsh.$(SO_VERSION).dylib $(OBJ) -lc $(LIBS) $(CFLAGS)
libxyzsh.dylib: libxyzsh.$(SO_VERSION).dylib
cp libxyzsh.$(SO_VERSION).dylib libxyzsh.2.dylib
cp libxyzsh.$(SO_VERSION).dylib libxyzsh.dylib
#########################################################
# Object files
#########################################################
$(OBJ): src/xyzsh.h src/debug.h src/xfunc.h src/kanji.h src/temulator.h Makefile configure
#########################################################
# Extension
#########################################################
extension: $(EXTOBJ)
src/ext/migemo.so: src/ext/migemo.c
gcc -shared src/ext/migemo.c -o src/ext/migemo.so $(CFLAGS) -lmigemo -lxyzsh $(LIBS)
#########################################################
# install
#########################################################
install: lib-install
if [ -z "$(DESTDIR)" ]; then make normal-install; else make dest-install; fi
normal-install:
mkdir -p "$(bindir)"
mkdir -p "$(sysconfdir)"
mkdir -p "$(libdir)"
mkdir -p "$(includedir)"
mkdir -p "$(docdir)"
mkdir -p "$(mandir)/man1"
$(INSTALL) -m 644 src/xyzsh.h "$(includedir)"
$(INSTALL) -m 644 src/temulator.h "$(includedir)"
$(INSTALL) -m 644 src/debug.h "$(includedir)"
$(INSTALL) -m 644 src/xfunc.h "$(includedir)"
$(INSTALL) -m 644 src/kanji.h "$(includedir)"
$(INSTALL) -m 644 USAGE "$(docdir)"
$(INSTALL) -m 644 USAGE.ja "$(docdir)"
$(INSTALL) -m 644 README.md "$(docdir)"
$(INSTALL) -m 644 README.ja "$(docdir)"
$(INSTALL) -m 644 CHANGELOG "$(docdir)"
rm -f $(bindir)/xyzsh
if echo $(CFLAGS) | grep -q MDEBUG; then $(INSTALL) -m 755 xyzsh "$(bindir)"; else $(INSTALL) -s -m 755 xyzsh "$(bindir)"; fi;
$(INSTALL) -m 644 man/man1/xyzsh.1 "$(mandir)/man1"
$(INSTALL) -m 644 xyzsh.xyzsh "$(sysconfdir)"
$(INSTALL) -m 644 completion.xyzsh "$(sysconfdir)"
$(INSTALL) -m 644 help.xyzsh "$(sysconfdir)"
mkdir -p "$(EXTDIR)"
if test -e src/ext/migemo.so; then $(INSTALL) -m 755 src/ext/migemo.so "$(EXTDIR)"; fi
if test -e src/ext/migemo.so; then $(INSTALL) -m 644 src/ext/migemo.xyzsh "$(EXTDIR)"; fi
dest-install:
mkdir -p "$(DESTDIR)/$(bindir)";
mkdir -p "$(DESTDIR)/$(sysconfdir)";
mkdir -p "$(DESTDIR)/$(libdir)"
mkdir -p "$(DESTDIR)/$(includedir)"
mkdir -p "$(DESTDIR)/$(docdir)"
mkdir -p "$(DESTDIR)/$(mandir)/man1"
$(INSTALL) -m 644 src/xyzsh.h "$(DESTDIR)/$(includedir)"
$(INSTALL) -m 644 src/temulator.h "$(DESTDIR)/$(includedir)"
$(INSTALL) -m 644 src/debug.h "$(DESTDIR)/$(includedir)"
$(INSTALL) -m 644 src/xfunc.h "$(DESTDIR)/$(includedir)"
$(INSTALL) -m 644 src/kanji.h "$(DESTDIR)/$(includedir)"
$(INSTALL) -m 644 USAGE "$(DESTDIR)/$(docdir)"
$(INSTALL) -m 644 USAGE.ja "$(DESTDIR)/$(docdir)"
$(INSTALL) -m 644 README "$(DESTDIR)/$(docdir)"
$(INSTALL) -m 644 CHANGELOG "$(DESTDIR)/$(docdir)"
rm -f "$(DESTDIR)/$(bindir)/xyzsh"
if echo $(CFLAGS) | grep -q MDEBUG; then $(INSTALL) -m 755 xyzsh "$(DESTDIR)/$(bindir)"; else $(INSTALL) -s -m 755 xyzsh "$(DESTDIR)/$(bindir)"; fi;
$(INSTALL) -m 644 man/man1/xyzsh.1 "$(DESTDIR)/$(mandir)/man1"
$(INSTALL) -m 644 xyzsh.xyzsh "$(DESTDIR)/$(sysconfdir)"
$(INSTALL) -m 644 completion.xyzsh "$(DESTDIR)/$(sysconfdir)"
$(INSTALL) -m 644 help.xyzsh "$(DESTDIR)/$(sysconfdir)"
mkdir -p "$(DESTDIR)/$(EXTDIR)"
if test -e src/ext/migemo.so; then $(INSTALL) -m 755 src/ext/migemo.so "$(DESTDIR)/$(EXTDIR)"; fi
if test -e src/ext/migemo.so; then $(INSTALL) -m 644 src/ext/migemo.xyzsh "$(DESTDIR)/$(EXTDIR)"; fi
#########################################################
# uninstall
#########################################################
uninstall:
rm -f $(includedir)/xyzsh.h
rm -f $(includedir)/kanji.h
rm -f $(includedir)/debug.h
rm -f $(includedir)/xfunc.h
rm -f $(includedir)/temulator.h
rmdir $(includedir)
rm -f $(docdir)/USAGE
rm -f $(docdir)/USAGE.ja
rm -f $(docdir)/README
rm -f $(docdir)/README.ja
rm -f $(docdir)/CHANGELOG
rmdir $(docdir)
rm -f $(bindir)/xyzsh
rm -f $(mandir)/man1/xyzsh.1
rm -f $(sysconfdir)/xyzsh.xyzsh
rm -f $(sysconfdir)/completion.xyzsh
rm -f $(sysconfdir)/help.xyzsh
rmdir $(sysconfdir)
#########################################################
# permission
#########################################################
permission:
chmod 644 *
chmod 755 .git man src configure
chmod 644 src/*.c
chmod 644 src/*.h
########################################################
# clean
########################################################
clean:
rm -fR xyzsh xyzsh.dSYM src/*.o libxyzsh* xyzsh.exe* config.log config.status *.stackdump autom4te.cache .DS_Store src/ext/*.stackdump src/ext/*.dll src/ext/*.so src/ext/*.o src/ext/migemo.so.dSYM src/ext/*.a src/editline/*.o
distclean:
rm -fR xyzsh xyzsh.dSYM src/*.o libxyzsh* config.h Makefile xyzsh.exe* config.log config.status *.stackdump src/ext/*.stackdump autom4te.cache .DS_Store src/ext/*.so src/ext/*.dll src/ext/*.o src/ext/migemo.so.dSYM src/ext/*.a src/editline/*.o