ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.155
Committed: Fri Dec 23 00:20:45 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.154: +0 -5 lines
Log Message:
Remove unused makefile variables.

File Contents

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