ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.160
Committed: Thu May 10 22:42:03 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.159: +90 -88 lines
Log Message:
improve message

File Contents

# User Rev Content
1 ayin 1.48 DATE=@DATE@
2     VERSION=@VERSION@
3     RXVTNAME=@RXVTNAME@
4     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     CXX = @CXX@
10     PERL = @PERL@
11     INSTALL = @INSTALL@
12     INSTALL_PROGRAM = @INSTALL@ -m 755
13     INSTALL_DATA = @INSTALL@ -m 644
14 ayin 1.91 CXXFLAGS = @CXXFLAGS@
15 ayin 1.102 CPPFLAGS = @CPPFLAGS@
16 ayin 1.48 LDFLAGS = @LDFLAGS@
17     DEFS = @DEFS@
18     LIBS = @LIBS@
19 sf-exg 1.159 XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@
20     XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@
21 sf-exg 1.144 COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src -I$(srcdir)/../libecb $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
22 ayin 1.48 LINK = @LINKER@ $(LDFLAGS)
23 sf-exg 1.134 EXEEXT = @EXEEXT@
24 sf-exg 1.136 PERLFLAGS = @PERLFLAGS@
25     PERLLIB = @PERLLIB@
26 ayin 1.48
27 pcg 1.1 srcdir = @srcdir@
28     VPATH = @srcdir@
29    
30     first_rule: all
31     dummy:
32    
33 root 1.26 COMMON = \
34 sf-exg 1.144 background.o command.o rxvtfont.o init.o main.o misc.o \
35     screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
36 ayin 1.108 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
37 root 1.112 rxvttoolkit.o rxvtutil.o keyboard.o \
38 sf-exg 1.146 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@
39 pcg 1.1
40 root 1.51 COMMON_DAEMON = rxvtdaemon.o
41 root 1.28
42 sf-exg 1.135 RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
43     RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
44     RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
45 pcg 1.1
46     #
47     # Distribution variables
48     #
49    
50 root 1.87 .SUFFIXES: .C .c .o
51 pcg 1.1
52     #-------------------------------------------------------------------------
53     # inference rules
54     .C.o:
55     $(COMPILE) -c $<
56    
57     #-------------------------------------------------------------------------
58 pcg 1.13
59 pcg 1.1 all: allbin
60    
61 root 1.26 rxvt: rxvt.o $(COMMON)
62 sf-exg 1.136 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
63 root 1.26
64 root 1.28 rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
65 sf-exg 1.136 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
66 root 1.26
67 sf-exg 1.146 rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
68     $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
69 pcg 1.13
70 pcg 1.1 #-------------------------------------------------------------------------
71 pcg 1.13
72 sf-exg 1.150 #EXUBERANT_OPTS = -I NOTHROW -I THROW
73 ayin 1.106
74 ayin 1.53 tags: *.[Ch]
75 ayin 1.106 ctags $(EXUBERANT_OPTS) *.[Ch]
76 ayin 1.53
77     TAGS: *.[Ch]
78 ayin 1.106 etags $(EXUBERANT_OPTS) *.[Ch]
79 pcg 1.1
80 root 1.17 allbin: rxvt rxvtd rxvtc
81 pcg 1.1
82     alldoc:
83    
84     clean:
85 ayin 1.59 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
86 ayin 1.129 rm -f *.o
87 pcg 1.1
88 ayin 1.93 distclean: clean
89 ayin 1.126 rm -f Makefile
90 ayin 1.93
91     realclean: distclean
92 ayin 1.92 rm -f tags TAGS
93 pcg 1.1
94     cleandir: realclean
95    
96 root 1.31 install-perl:
97 root 1.32 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
98     @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
99 root 1.36 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
100 ayin 1.82 @IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
101 sf-exg 1.133 @IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; done
102 root 1.31
103 ayin 1.88 install-bin: allbin
104 root 1.32 $(INSTALL) -d $(DESTDIR)$(bindir)
105 root 1.26 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
106     $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
107     $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
108 pcg 1.1
109 ayin 1.93 install: install-bin install-perl
110 ayin 1.88
111 root 1.30 perlxsi.c: Makefile
112     $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
113    
114 root 1.84 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 root 1.30
117     rxvtperl.o: rxvtperl.C perlxsi.c
118 sf-exg 1.136 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
119 root 1.30
120 root 1.23 depend:
121 root 1.149 makedepend -f Makefile.in -I. -I.. -I../libev -I../libptytty/src -I../libecb -Y *.C >/dev/null 2>&1
122 root 1.23
123 pcg 1.1 # DO NOT DELETE: nice dependency list follows
124    
125 root 1.149 background.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
126 root 1.160 background.o: ../libev/ecb.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 salloc.h ../libptytty/src/libptytty.h rxvtperl.h
129     background.o: hookinc.h rsinc.h optinc.h
130     command.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libev/ecb.h
131     command.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
132     command.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
133     command.o: salloc.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
134     command.o: optinc.h version.h command.h keyboard.h
135     encoding.o: ../config.h encoding.h rxvtutil.h ../libev/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 root 1.23 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 root 1.131 ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
152 root 1.145 ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
153 sf-exg 1.147 fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
154     fdpass_wrapper.o: ../libptytty/src/libptytty.h
155 root 1.160 init.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libev/ecb.h
156     init.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
157     init.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
158 root 1.149 init.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
159     init.o: init.h keyboard.h
160 root 1.160 keyboard.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libev/ecb.h
161     keyboard.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
162     keyboard.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
163     keyboard.o: salloc.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
164     keyboard.o: rsinc.h optinc.h keyboard.h
165     main.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libev/ecb.h
166     main.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
167     main.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
168 root 1.149 main.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
169     main.o: init.h keyboard.h
170 root 1.160 misc.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libev/ecb.h
171     misc.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
172     misc.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
173 root 1.149 misc.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
174 sf-exg 1.144 ptytty_wrapper.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
175 root 1.160 ptytty_wrapper.o: ../libev/ecb.h ../libptytty/src/estl.h rxvtfont.h
176     ptytty_wrapper.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h
177     ptytty_wrapper.o: callback.h scrollbar.h salloc.h
178     ptytty_wrapper.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
179     ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C
180 sf-exg 1.147 ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h
181     ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C
182 root 1.160 rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libev/ecb.h
183     rxvt.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
184     rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
185 root 1.149 rxvt.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
186 root 1.160 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libev/ecb.h
187     rxvtc.o: ../libptytty/src/estl.h ../libptytty/src/libptytty.h
188     rxvtd.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libev/ecb.h
189     rxvtd.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
190     rxvtd.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
191     rxvtd.o: salloc.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
192     rxvtd.o: optinc.h rxvtdaemon.h
193     rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libev/ecb.h ../libptytty/src/estl.h
194     rxvtfont.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libev/ecb.h
195     rxvtfont.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
196     rxvtfont.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
197     rxvtfont.o: salloc.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
198     rxvtfont.o: rsinc.h optinc.h table/linedraw.h
199 root 1.149 rxvttoolkit.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
200 root 1.160 rxvttoolkit.o: ../libev/ecb.h ../libptytty/src/estl.h rxvtfont.h
201     rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
202     rxvttoolkit.o: ../libev/ev.h callback.h scrollbar.h salloc.h
203 root 1.145 rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
204     rxvttoolkit.o: optinc.h
205 root 1.160 rxvtutil.o: rxvtutil.h ../libev/ecb.h ../libptytty/src/estl.h
206 root 1.23 salloc.o: salloc.h
207 root 1.160 screen.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libev/ecb.h
208     screen.o: ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h ev_cpp.h
209     screen.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
210     screen.o: salloc.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
211     screen.o: optinc.h salloc.C
212 root 1.128 scrollbar-next.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
213 root 1.160 scrollbar-next.o: ../libev/ecb.h ../libptytty/src/estl.h rxvtfont.h
214     scrollbar-next.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
215     scrollbar-next.o: ../libev/ev.h callback.h scrollbar.h salloc.h
216     scrollbar-next.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
217     scrollbar-next.o: optinc.h
218 root 1.128 scrollbar-plain.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
219 root 1.160 scrollbar-plain.o: ../libev/ecb.h ../libptytty/src/estl.h rxvtfont.h
220     scrollbar-plain.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
221     scrollbar-plain.o: ../libev/ev.h callback.h scrollbar.h salloc.h
222     scrollbar-plain.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
223     scrollbar-plain.o: optinc.h
224 root 1.128 scrollbar-rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
225 root 1.160 scrollbar-rxvt.o: ../libev/ecb.h ../libptytty/src/estl.h rxvtfont.h
226     scrollbar-rxvt.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
227     scrollbar-rxvt.o: ../libev/ev.h callback.h scrollbar.h salloc.h
228     scrollbar-rxvt.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
229     scrollbar-rxvt.o: optinc.h
230 root 1.128 scrollbar-xterm.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
231 root 1.160 scrollbar-xterm.o: ../libev/ecb.h ../libptytty/src/estl.h rxvtfont.h
232     scrollbar-xterm.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
233     scrollbar-xterm.o: ../libev/ev.h callback.h scrollbar.h salloc.h
234     scrollbar-xterm.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
235     scrollbar-xterm.o: optinc.h
236 root 1.149 scrollbar.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
237 root 1.160 scrollbar.o: ../libev/ecb.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
238     scrollbar.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
239     scrollbar.o: scrollbar.h salloc.h ../libptytty/src/libptytty.h rxvtperl.h
240     scrollbar.o: hookinc.h rsinc.h optinc.h
241 root 1.149 xdefaults.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
242 root 1.160 xdefaults.o: ../libev/ecb.h ../libptytty/src/estl.h rxvtfont.h rxvttoolkit.h
243     xdefaults.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
244     xdefaults.o: scrollbar.h salloc.h ../libptytty/src/libptytty.h rxvtperl.h
245     xdefaults.o: hookinc.h rsinc.h optinc.h version.h keyboard.h