ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.178
Committed: Mon Oct 28 14:07:59 2013 UTC (10 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_19
Changes since 1.177: +1 -1 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 man1dir = @mandir@/man1
10 man1ext = 1
11 man3dir = @mandir@/man3
12 man3ext = 3
13 PODOPTS = quotes => q<"> , center => q<RXVT-UNICODE>, release => q<$(VERSION)>
14 CXX = @CXX@
15 PERL = @PERL@
16 INSTALL = @INSTALL@
17 INSTALL_PROGRAM = @INSTALL@ -m 755
18 INSTALL_DATA = @INSTALL@ -m 644
19 CXXFLAGS = @CXXFLAGS@
20 CPPFLAGS = @CPPFLAGS@
21 LDFLAGS = @LDFLAGS@
22 DEFS = @DEFS@
23 LIBS = @LIBS@
24 XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@
25 XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@
26 COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
27 LINK = @LINKER@ $(LDFLAGS)
28 EXEEXT = @EXEEXT@
29 PERLFLAGS = @PERLFLAGS@
30 PERLLIB = @PERLLIB@
31
32 srcdir = @srcdir@
33 VPATH = @srcdir@
34
35 first_rule: all
36 dummy:
37
38 COMMON = \
39 background.o command.o rxvtfont.o init.o main.o misc.o \
40 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
41 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
42 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \
43 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@
44
45 COMMON_DAEMON = rxvtdaemon.o
46
47 RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
48 RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
49 RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
50
51 #
52 # Distribution variables
53 #
54
55 .SUFFIXES: .C .c .o
56
57 #-------------------------------------------------------------------------
58 # inference rules
59 .C.o:
60 $(COMPILE) -c $<
61
62 #-------------------------------------------------------------------------
63
64 all: allbin
65
66 rxvt: rxvt.o $(COMMON)
67 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
68
69 rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
70 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
71
72 rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
73 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
74
75 #-------------------------------------------------------------------------
76
77 #EXUBERANT_OPTS = -I NOTHROW -I THROW
78
79 tags: *.[Ch]
80 ctags $(EXUBERANT_OPTS) *.[Ch]
81
82 TAGS: *.[Ch]
83 etags $(EXUBERANT_OPTS) *.[Ch]
84
85 allbin: rxvt rxvtd rxvtc
86
87 alldoc:
88
89 clean:
90 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C manlst mantmp
91 rm -f *.o
92
93 distclean: clean
94 rm -f Makefile
95
96 realclean: distclean
97 rm -f tags TAGS
98
99 cleandir: realclean
100
101 install-perl:
102 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
103 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
104 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
105 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man1dir)
106 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir)
107 @IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
108 @IF_PERL@ for ext in $(srcdir)/perl/*; do \
109 @IF_PERL@ test -f "$$ext" || continue; \
110 @IF_PERL@ base="$${ext##*/}"; \
111 @IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \
112 @IF_PERL@ < "$$ext" \
113 @IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "'urxvt-$$base'", $(PODOPTS))->parse_from_file' \
114 @IF_PERL@ > ../mantmp; \
115 @IF_PERL@ test -s ../mantmp && $(INSTALL_DATA) ../mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$base.$(man1ext); \
116 @IF_PERL@ < "$$ext" $(PERL) -ne '<>, (print <> . "\n"), exit if /^=head1/' >&3; \
117 @IF_PERL@ done 3>manlst
118 @IF_PERL@ cat $(srcdir)/../doc/extensions.pod.top manlst $(srcdir)/../doc/extensions.pod.bot | \
119 @IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)-extensions", $(PODOPTS))->parse_from_file' \
120 @IF_PERL@ > mantmp
121 @IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-extensions.$(man1ext)
122 @IF_PERL@ < $(srcdir)/urxvt.pm \
123 @IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)perl", section => 3, $(PODOPTS))->parse_from_file' \
124 @IF_PERL@ > mantmp
125 @IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext)
126
127 install-bin: allbin
128 $(INSTALL) -d $(DESTDIR)$(bindir)
129 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
130 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
131 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
132
133 install: install-bin install-perl
134
135 perlxsi.c: Makefile
136 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
137
138 rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
139 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
140
141 rxvtperl.o: rxvtperl.C perlxsi.c
142 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
143
144 depend:
145 makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1
146
147 # DO NOT DELETE: nice dependency list follows
148
149 background.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
150 background.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
151 background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
152 background.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
153 background.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
154 background.o: optinc.h
155 command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
156 command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
157 command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
158 command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
159 command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h
160 command.o: keyboard.h
161 encoding.o: ../config.h encoding.h rxvtutil.h ../libptytty/src/ecb.h
162 encoding.o: ../libptytty/src/estl.h emman.h table/iso8859_1.h
163 encoding.o: table/iso8859_15.h table/iso8859_2.h table/iso8859_3.h
164 encoding.o: table/iso8859_4.h table/iso8859_5.h table/iso8859_6.h
165 encoding.o: table/iso8859_7.h table/iso8859_8.h table/iso8859_9.h
166 encoding.o: table/iso8859_10.h table/iso8859_11.h table/iso8859_13.h
167 encoding.o: table/iso8859_14.h table/iso8859_16.h table/koi8_r.h
168 encoding.o: table/koi8_u.h table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
169 encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
170 encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
171 encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
172 encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
173 encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
174 encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
175 encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
176 encoding.o: table/compose.h table/category.h
177 ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
178 ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
179 fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
180 fdpass_wrapper.o: ../libptytty/src/libptytty.h
181 init.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
182 init.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
183 init.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
184 init.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
185 init.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
186 keyboard.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
187 keyboard.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
188 keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
189 keyboard.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
190 keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h
191 main.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
192 main.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
193 main.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
194 main.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
195 main.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
196 misc.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
197 misc.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
198 misc.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
199 misc.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
200 misc.o: hookinc.h rsinc.h optinc.h
201 ptytty_wrapper.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
202 ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
203 ptytty_wrapper.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h
204 ptytty_wrapper.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
205 ptytty_wrapper.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
206 ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C
207 ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h
208 ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C
209 rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
210 rxvt.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
211 rxvt.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
212 rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
213 rxvt.o: hookinc.h rsinc.h optinc.h
214 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
215 rxvtc.o: ../libptytty/src/estl.h emman.h ../libptytty/src/libptytty.h
216 rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
217 rxvtd.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
218 rxvtd.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
219 rxvtd.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
220 rxvtd.o: hookinc.h rsinc.h optinc.h rxvtdaemon.h
221 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
222 rxvtdaemon.o: ../libptytty/src/estl.h emman.h
223 rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
224 rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
225 rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
226 rxvtfont.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
227 rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h
228 rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
229 rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
230 rxvtimg.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
231 rxvtimg.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
232 rxvtimg.o: rxvtperl.h hookinc.h rsinc.h optinc.h
233 rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
234 rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
235 rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
236 rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
237 rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
238 rxvtperl.o: iom_perl.h
239 rxvttoolkit.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
240 rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
241 rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
242 rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
243 rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
244 rxvttoolkit.o: optinc.h
245 rxvtutil.o: rxvtutil.h ../libptytty/src/ecb.h ../libptytty/src/estl.h emman.h
246 rxvtutil.o: emman.c
247 screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
248 screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
249 screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
250 screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
251 screen.o: hookinc.h rsinc.h optinc.h
252 scrollbar-next.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
253 scrollbar-next.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
254 scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
255 scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
256 scrollbar-next.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
257 scrollbar-next.o: hookinc.h rsinc.h optinc.h
258 scrollbar-plain.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
259 scrollbar-plain.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
260 scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
261 scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
262 scrollbar-plain.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
263 scrollbar-plain.o: hookinc.h rsinc.h optinc.h
264 scrollbar-rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
265 scrollbar-rxvt.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
266 scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
267 scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
268 scrollbar-rxvt.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
269 scrollbar-rxvt.o: hookinc.h rsinc.h optinc.h
270 scrollbar-xterm.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
271 scrollbar-xterm.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
272 scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
273 scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
274 scrollbar-xterm.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
275 scrollbar-xterm.o: hookinc.h rsinc.h optinc.h
276 scrollbar.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
277 scrollbar.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
278 scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
279 scrollbar.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
280 scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h
281 xdefaults.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
282 xdefaults.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
283 xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
284 xdefaults.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
285 xdefaults.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h keyboard.h
286 rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
287 rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
288 rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
289 rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
290 rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
291 rxvtperl.o: iom_perl.h