ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.170
Committed: Fri Sep 21 22:55:56 2012 UTC (11 years, 8 months ago) by root
Branch: MAIN
Changes since 1.169: +14 -5 lines
Log Message:
*** empty log message ***

File Contents

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