ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.166
Committed: Sun Jun 3 09:59:19 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.165: +5 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 DATE=@DATE@
2 VERSION=@VERSION@
3 RXVTNAME=@RXVTNAME@
4 SHELL = /bin/sh
5 prefix = @prefix@
6 exec_prefix = @exec_prefix@
7 bindir = @bindir@
8 libdir = @libdir@
9 CXX = @CXX@
10 PERL = @PERL@
11 INSTALL = @INSTALL@
12 INSTALL_PROGRAM = @INSTALL@ -m 755
13 INSTALL_DATA = @INSTALL@ -m 644
14 CXXFLAGS = @CXXFLAGS@
15 CPPFLAGS = @CPPFLAGS@
16 LDFLAGS = @LDFLAGS@
17 DEFS = @DEFS@
18 LIBS = @LIBS@
19 XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@
20 XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@
21 COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
22 LINK = @LINKER@ $(LDFLAGS)
23 EXEEXT = @EXEEXT@
24 PERLFLAGS = @PERLFLAGS@
25 PERLLIB = @PERLLIB@
26
27 srcdir = @srcdir@
28 VPATH = @srcdir@
29
30 first_rule: all
31 dummy:
32
33 COMMON = \
34 background.o command.o rxvtfont.o init.o main.o misc.o \
35 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
36 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
37 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \
38 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@
39
40 COMMON_DAEMON = rxvtdaemon.o
41
42 RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
43 RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
44 RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
45
46 #
47 # Distribution variables
48 #
49
50 .SUFFIXES: .C .c .o
51
52 #-------------------------------------------------------------------------
53 # inference rules
54 .C.o:
55 $(COMPILE) -c $<
56
57 #-------------------------------------------------------------------------
58
59 all: allbin
60
61 rxvt: rxvt.o $(COMMON)
62 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
63
64 rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
65 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
66
67 rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
68 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
69
70 #-------------------------------------------------------------------------
71
72 #EXUBERANT_OPTS = -I NOTHROW -I THROW
73
74 tags: *.[Ch]
75 ctags $(EXUBERANT_OPTS) *.[Ch]
76
77 TAGS: *.[Ch]
78 etags $(EXUBERANT_OPTS) *.[Ch]
79
80 allbin: rxvt rxvtd rxvtc
81
82 alldoc:
83
84 clean:
85 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
86 rm -f *.o
87
88 distclean: clean
89 rm -f Makefile
90
91 realclean: distclean
92 rm -f tags TAGS
93
94 cleandir: realclean
95
96 install-perl:
97 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
98 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
99 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
100 @IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
101 @IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; done
102
103 install-bin: allbin
104 $(INSTALL) -d $(DESTDIR)$(bindir)
105 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
106 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
107 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
108
109 install: install-bin install-perl
110
111 perlxsi.c: Makefile
112 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
113
114 rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
115 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
116
117 rxvtperl.o: rxvtperl.C perlxsi.c
118 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
119
120 depend:
121 makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C >/dev/null 2>&1
122
123 # DO NOT DELETE: nice dependency list follows
124
125 background.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
126 background.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
127 background.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
128 background.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
129 background.o: rsinc.h optinc.h
130 command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
131 command.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
132 command.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
133 command.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
134 command.o: rsinc.h optinc.h version.h command.h keyboard.h
135 encoding.o: ../config.h encoding.h rxvtutil.h ../libptytty/src/ecb.h
136 encoding.o: ../libptytty/src/estl.h table/iso8859_1.h table/iso8859_15.h
137 encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
138 encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
139 encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
140 encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
141 encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
142 encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
143 encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
144 encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
145 encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
146 encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
147 encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
148 encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
149 encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
150 encoding.o: table/compose.h table/category.h
151 ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
152 ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
153 fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
154 fdpass_wrapper.o: ../libptytty/src/libptytty.h
155 fifo.o: emman.h fifo.h ../libptytty/src/ecb.h
156 init.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
157 init.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
158 init.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
159 init.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
160 init.o: init.h keyboard.h
161 keyboard.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
162 keyboard.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
163 keyboard.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
164 keyboard.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
165 keyboard.o: rsinc.h optinc.h keyboard.h
166 main.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
167 main.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
168 main.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
169 main.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
170 main.o: init.h keyboard.h
171 misc.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
172 misc.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
173 misc.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
174 misc.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
175 ptytty_wrapper.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
176 ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h rxvtfont.h
177 ptytty_wrapper.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h
178 ptytty_wrapper.o: callback.h scrollbar.h ../libptytty/src/libptytty.h
179 ptytty_wrapper.o: rxvtperl.h hookinc.h rsinc.h optinc.h
180 ptytty_wrapper.o: ../libptytty/src/logging.C ../libptytty/src/ptytty.h
181 ptytty_wrapper.o: ../libptytty/src/ptytty_conf.h ../libptytty/src/proxy.C
182 ptytty_wrapper.o: ../libptytty/src/ptytty.C
183 rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
184 rxvt.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
185 rxvt.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
186 rxvt.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
187 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
188 rxvtc.o: ../libptytty/src/estl.h ../libptytty/src/libptytty.h
189 rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
190 rxvtd.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
191 rxvtd.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
192 rxvtd.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
193 rxvtd.o: rxvtdaemon.h
194 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
195 rxvtdaemon.o: ../libptytty/src/estl.h
196 rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
197 rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
198 rxvtfont.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
199 rxvtfont.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
200 rxvtfont.o: rsinc.h optinc.h table/linedraw.h
201 rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
202 rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
203 rxvtimg.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
204 rxvtimg.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
205 rxvtimg.o: rsinc.h optinc.h
206 rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
207 rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
208 rxvtperl.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h callback.h
209 rxvtperl.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
210 rxvtperl.o: rsinc.h optinc.h keyboard.h perlxsi.c iom_perl.h
211 rxvttoolkit.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
212 rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
213 rxvttoolkit.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
214 rxvttoolkit.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
215 rxvttoolkit.o: rsinc.h optinc.h
216 rxvtutil.o: rxvtutil.h ../libptytty/src/ecb.h ../libptytty/src/estl.h
217 screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
218 screen.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
219 screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
220 screen.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
221 screen.o: rsinc.h optinc.h
222 scrollbar-next.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
223 scrollbar-next.o: encoding.h rxvtutil.h ../libptytty/src/estl.h rxvtfont.h
224 scrollbar-next.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
225 scrollbar-next.o: ../libev/ev.h callback.h scrollbar.h
226 scrollbar-next.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
227 scrollbar-next.o: optinc.h
228 scrollbar-plain.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
229 scrollbar-plain.o: encoding.h rxvtutil.h ../libptytty/src/estl.h rxvtfont.h
230 scrollbar-plain.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
231 scrollbar-plain.o: ../libev/ev.h callback.h scrollbar.h
232 scrollbar-plain.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
233 scrollbar-plain.o: optinc.h
234 scrollbar-rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
235 scrollbar-rxvt.o: encoding.h rxvtutil.h ../libptytty/src/estl.h rxvtfont.h
236 scrollbar-rxvt.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
237 scrollbar-rxvt.o: ../libev/ev.h callback.h scrollbar.h
238 scrollbar-rxvt.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
239 scrollbar-rxvt.o: optinc.h
240 scrollbar-xterm.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
241 scrollbar-xterm.o: encoding.h rxvtutil.h ../libptytty/src/estl.h rxvtfont.h
242 scrollbar-xterm.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
243 scrollbar-xterm.o: ../libev/ev.h callback.h scrollbar.h
244 scrollbar-xterm.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
245 scrollbar-xterm.o: optinc.h
246 scrollbar.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
247 scrollbar.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
248 scrollbar.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
249 scrollbar.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
250 scrollbar.o: rsinc.h optinc.h
251 xdefaults.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
252 xdefaults.o: rxvtutil.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
253 xdefaults.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
254 xdefaults.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
255 xdefaults.o: rsinc.h optinc.h version.h keyboard.h