ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.149
Committed: Wed Jun 29 15:17:07 2011 UTC (12 years, 10 months ago) by root
Branch: MAIN
Changes since 1.148: +96 -87 lines
Log Message:
*** empty log message ***

File Contents

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