ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.148
Committed: Wed Jun 29 13:50:46 2011 UTC (12 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-9_12
Changes since 1.147: +5 -0 lines
Log Message:
9.12

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