ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
(Generate patch)

Comparing rxvt-unicode/src/Makefile.in (file contents):
Revision 1.4 by pcg, Wed Nov 26 10:42:34 2003 UTC vs.
Revision 1.169 by root, Thu Jun 28 15:19:15 2012 UTC

1# $Id: Makefile.in,v 1.4 2003/11/26 10:42:34 pcg Exp $ 1DATE=@DATE@
2@MCOMMON@ 2VERSION=@VERSION@
3 3RXVTNAME=@RXVTNAME@
4LINT = lint -DNARROWPROTO=1 $(XINC) -chapbxz 4SHELL = /bin/sh
5prefix = @prefix@
6exec_prefix = @exec_prefix@
7bindir = @bindir@
8libdir = @libdir@
9CXX = @CXX@
10PERL = @PERL@
11INSTALL = @INSTALL@
12INSTALL_PROGRAM = @INSTALL@ -m 755
13INSTALL_DATA = @INSTALL@ -m 644
14CXXFLAGS = @CXXFLAGS@
15CPPFLAGS = @CPPFLAGS@
16LDFLAGS = @LDFLAGS@
17DEFS = @DEFS@
18LIBS = @LIBS@
19XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@
20XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@
21COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
22LINK = @LINKER@ $(LDFLAGS)
23EXEEXT = @EXEEXT@
24PERLFLAGS = @PERLFLAGS@
25PERLLIB = @PERLLIB@
5 26
6srcdir = @srcdir@ 27srcdir = @srcdir@
7VPATH = @srcdir@ 28VPATH = @srcdir@
8.PATH: @srcdir@
9
10top_builddir = ..
11basedir = ..
12thisdir = src
13MKDIR = @top_srcdir@/autoconf/mkinstalldirs
14
15SUPLIB = -lsupc++
16
17# for developers: the following debug options may be used
18# -DDEBUG_CMD -DDEBUG_MAIN -DDEBUG_MENU -DDEBUG_MENUARROWS
19# -DDEBUG_MENUBAR_STACKING -DDEBUG_MENU_LAYOUT -DDEBUG_RESOURCES
20# -DDEBUG_SCREEN -DDEBUG_SEARCH_PATH -DDEBUG_SELECT -DDEBUG_SIZE
21# -DDEBUG_TTY -DDEBUG_TTYMODE -DDEBUG_X
22DEBUG=-DDEBUG_STRICT @DEBUG@
23 29
24first_rule: all 30first_rule: all
25dummy: 31dummy:
26 32
27LIBSRCS = command.C defaultfont.C graphics.C grkelot.C init.C logging.C \ 33COMMON = \
28 main.C menubar.C misc.C netdisp.C ptytty.C screen.C scrollbar.C \ 34 background.o command.o rxvtfont.o init.o main.o misc.o \
29 scrollbar-rxvt.C scrollbar-next.C scrollbar-xterm.C strings.C \
30 xdefaults.C xpm.C encoding.C rxvtcolor.C rxvtvec.C iom.C
31
32SRCS = rxvt.C $(LIBSRCS)
33
34HDRS = command.h defaultfont.h feature.h grkelot.h init.h logging.h \
35 menubar.h netdisp.h protos.h rxvt.h rxvtgrx.h version.h encoding.h \
36 rxvtvec.h iom.h
37
38EXTRAHDRS = rxvtlib.h rxvtdaemon.h
39
40OBJS = command.o defaultfont.o init.o graphics.o grkelot.o logging.o \
41 main.o menubar.o misc.o netdisp.o ptytty.o screen.o \
42 scrollbar.o scrollbar-next.o scrollbar-rxvt.o scrollbar-xterm.o \ 35 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
43 strings.o xdefaults.o xpm.o rxvt.o encoding.o rxvtcolor.o rxvtvec.o iom.o 36 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
44LIBOBJS = command.lo defaultfont.lo init.lo graphics.lo grkelot.lo logging.lo \ 37 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \
45 main.lo menubar.lo misc.lo netdisp.lo ptytty.lo screen.lo \ 38 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@
46 scrollbar.lo scrollbar-next.lo scrollbar-rxvt.lo scrollbar-xterm.lo \
47 strings.lo xdefaults.lo xpm.lo encoding.lo rxvt.lo rxvtcolor.lo rxvtvec.lo iom.lo
48 39
49LIBVERSION = @LIBVERSION@ 40COMMON_DAEMON = rxvtdaemon.o
50INSTALL_LIBRXVT = @INSTALL_LIBRXVT@
51 41
52RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'`
53RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT) 42RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
54RXVT_VERNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-$(VERSION)$(EXEEXT) 43RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
55RXVT_OLDNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-old$(EXEEXT) 44RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
56
57EXTPROS = command.extpro defaultfont.extpro graphics.extpro grkelot.extpro \
58 init.extpro logging.extpro main.extpro menubar.extpro misc.extpro \
59 netdisp.extpro ptytty.extpro screen.extpro scrollbar.extpro \
60 scrollbar-rxvt.extpro scrollbar-next.extpro scrollbar-xterm.extpro \
61 strings.extpro xdefaults.extpro xpm.extpro
62
63INTPROS = command.intpro defaultfont.intpro graphics.intpro grkelot.intpro \
64 init.intpro logging.intpro main.intpro menubar.intpro misc.intpro \
65 netdisp.intpro ptytty.intpro screen.intpro scrollbar.intpro \
66 scrollbar-rxvt.intpro scrollbar-next.intpro scrollbar-xterm.intpro \
67 strings.intpro xdefaults.intpro xpm.intpro
68
69DEPS = rxvt.h rxvtlib.h ${basedir}/config.h feature.h .protos
70 45
71# 46#
72# Distribution variables 47# Distribution variables
73# 48#
74 49
75DIST = $(HDRS) $(SRCS) Makefile.in gcc-Wall rxvtlib.h.in .indent.pro \ 50.SUFFIXES: .C .c .o
76 makeintprotos-awk makeextprotos-awk $(INTPROS) $(EXTPROS) .protos
77
78.SUFFIXES: .C .o .extpro .intpro .lo
79 51
80#------------------------------------------------------------------------- 52#-------------------------------------------------------------------------
81# inference rules 53# inference rules
82.C.o: 54.C.o:
83 $(COMPILE) -c $< 55 $(COMPILE) -c $<
84 56
85.C.lo:
86 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
87
88.s.lo:
89 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
90
91.S.lo:
92 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
93
94.C.intpro:
95 @$(RMF) $@.tmp
96 @$(AWK) -f $(srcdir)/makeintprotos-awk $< > $@.tmp
97 @if $(CMP) -s $@ $@.tmp ; then : ; else $(ECHO) "$(AWK) -f $(srcdir)/makeintprotos-awk $< > $@"; $(CP) $@.tmp $@; fi
98 @$(RMF) $@.tmp
99
100.C.extpro:
101 @$(RMF) $@.tmp
102 @$(AWK) -f $(srcdir)/makeextprotos-awk $< > $@.tmp
103 @if $(CMP) -s $@ $@.tmp ; then : ; else $(ECHO) "$(AWK) -f $(srcdir)/makeextprotos-awk $< > $@"; $(CP) $@.tmp $@; fi
104 @$(RMF) $@.tmp
105#------------------------------------------------------------------------- 57#-------------------------------------------------------------------------
58
106all: allbin 59all: allbin
107 60
108rxvt: version.h rxvt.o librxvt.la 61rxvt: rxvt.o $(COMMON)
109 $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) $(SUPLIB) -o $@ 62 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
110 63
111rxvtd: version.h rxvtd.o librxvt.la rxvtdaemon.o 64rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
112 $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) $(SUPLIB) -o $@ 65 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
113 66
114rxvtc: version.h rxvtc.o rxvtdaemon.o 67rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
115 $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) $(SUPLIB) -o $@ 68 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
116 69
117.protos: $(EXTPROS)
118 @$(RMF) .protos
119 date >.protos
120
121librxvt.la: $(LIBOBJS)
122 $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) $(SUPLIB) -o $@
123#------------------------------------------------------------------------- 70#-------------------------------------------------------------------------
124tags: $(SRCS) $(HDRS) $(EXTRAHDRS)
125 ctags $(SRCS) $(HDRS) $(EXTRAHDRS)
126 71
72#EXUBERANT_OPTS = -I NOTHROW -I THROW
73
74tags: *.[Ch]
75 ctags $(EXUBERANT_OPTS) *.[Ch]
76
77TAGS: *.[Ch]
78 etags $(EXUBERANT_OPTS) *.[Ch]
79
127allbin: .protos rxvt rxvtd rxvtc 80allbin: rxvt rxvtd rxvtc
128 81
129alldoc: 82alldoc:
130 83
131clean: 84clean:
132 $(RMF) rxvt core a.out *.o *.lo *.bak *~ *.intpro *.extpro .libs/* librxvt.la tmpproto .protos *.tmp 85 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
86 rm -f *.o
133 87
88distclean: clean
89 rm -f Makefile
90
134realclean: clean 91realclean: distclean
135 $(RMF) tags librxvt.h 92 rm -f tags TAGS
136 93
137cleandir: realclean 94cleandir: realclean
138 95
139distclean: realclean 96install-perl:
140 if test $(srcdir) = .; then $(MAKE) realclean; fi 97@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
141 (cd $(srcdir); $(RMF) Makefile) 98@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
99@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
100@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
101@IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; done
142 102
143install: allbin alldoc 103install-bin: allbin
144 $(MKDIR) $(DESTDIR)$(includedir) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) 104 $(INSTALL) -d $(DESTDIR)$(bindir)
145 @if test x$(INSTALL_LIBRXVT) = xyes; then \ 105 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
146 $(ECHO) "$(LIBTOOL) --mode=install $(INSTALL_DATA) rxvtlib.h $(DESTDIR)$(includedir)/rxvtlib.h"; \ 106 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
147 $(LIBTOOL) --mode=install $(INSTALL_DATA) rxvtlib.h $(DESTDIR)$(includedir)/rxvtlib.h; \ 107 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
148 $(ECHO) "$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(DESTDIR)$(libdir)/librxvt.la"; \
149 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(DESTDIR)$(libdir)/librxvt.la; \
150 fi
151 @if test -f $(RXVT_BINNAME); then \
152 $(ECHO) "$(RMF) $(RXVT_OLDNAME)"; \
153 $(RMF) $(RXVT_OLDNAME); \
154 $(ECHO) "$(MV) $(RXVT_BINNAME) $(RXVT_OLDNAME)"; \
155 $(MV) $(RXVT_BINNAME) $(RXVT_OLDNAME); \
156 fi
157 @$(ECHO) "$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(RXVT_VERNAME)"
158 @$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(RXVT_VERNAME)
159 @$(ECHO) "$(LN) $(RXVT_VERNAME) $(RXVT_BINNAME)"
160 @$(LN) $(RXVT_VERNAME) $(RXVT_BINNAME)
161 108
162uninstall: 109install: install-bin install-perl
163 @$(ECHO) $(RMF) $(RXVT_VERNAME)
164 @$(RMF) $(RXVT_VERNAME)
165 @$(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(RXVT_BINNAME)"
166 @$(LIBTOOL) --mode=uninstall $(RMF) $(RXVT_BINNAME)
167 @if test x$(INSTALL_LIBRXVT) = xyes; then \
168 $(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(libdir)/librxvt.la"; \
169 $(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(libdir)/librxvt.la; \
170 $(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(includedir)/rxvtlib.h"; \
171 $(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(includedir)/rxvtlib.h; \
172 fi
173 110
174distdirs: 111perlxsi.c: Makefile
175 mkdir $(basedir)/../$(VERNAME)/$(thisdir) 112 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
176 113
177distcopy: .protos $(INTPROS) 114rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
178 $(CP) -p $(DIST) $(basedir)/../$(VERNAME)/$(thisdir) 115 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
179 116
180# ----------------------------------------------------------------------- 117rxvtperl.o: rxvtperl.C perlxsi.c
118 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
119
120depend:
121 makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1
122
181# DO NOT DELETE: nice dependency list follows 123# DO NOT DELETE: nice dependency list follows
182#
183 124
184defaultfont.h: encoding.h rxvtvec.h 125background.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
185rxvtlib.h: rxvtcolor.h defaultfont.h 126background.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
186rxvtdaemon.o: rxvtdaemon.C rxvtdaemon.h 127background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
187rxvtd.o: rxvtd.C $(DEPS) rxvtdaemon.h rxvtvec.h 128background.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
188rxvtc.o: rxvtc.C $(DEPS) rxvtdaemon.h rxvtvec.h 129background.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
189 130background.o: optinc.h
190command.o: command.C $(DEPS) command.intpro command.h version.h 131command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
191defaultfont.o: defaultfont.C $(DEPS) defaultfont.intpro defaultfont.h 132command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
192graphics.o: graphics.C $(DEPS) graphics.intpro 133command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
193grkelot.o: grkelot.C $(DEPS) grkelot.intpro grkelot.h 134command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
194init.o: init.C $(DEPS) init.intpro init.h defaultfont.h 135command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h
195logging.o: logging.C $(DEPS) logging.intpro logging.h 136command.o: keyboard.h
196main.o: main.C $(DEPS) main.intpro 137encoding.o: ../config.h encoding.h rxvtutil.h ../libptytty/src/ecb.h
197menubar.o: menubar.C $(DEPS) menubar.intpro menubar.h version.h 138encoding.o: ../libptytty/src/estl.h emman.h table/iso8859_1.h
198misc.o: misc.C $(DEPS) misc.intpro 139encoding.o: table/iso8859_15.h table/iso8859_2.h table/iso8859_3.h
199netdisp.o: netdisp.C $(DEPS) netdisp.intpro netdisp.h 140encoding.o: table/iso8859_4.h table/iso8859_5.h table/iso8859_6.h
200ptytty.o: ptytty.C $(DEPS) ptytty.intpro 141encoding.o: table/iso8859_7.h table/iso8859_8.h table/iso8859_9.h
201rxvt.o: rxvt.C $(DEPS) 142encoding.o: table/iso8859_10.h table/iso8859_11.h table/iso8859_13.h
202screen.o: screen.C $(DEPS) screen.intpro defaultfont.h 143encoding.o: table/iso8859_14.h table/iso8859_16.h table/koi8_r.h
203scrollbar.o: scrollbar.C $(DEPS) scrollbar.intpro 144encoding.o: table/koi8_u.h table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
204scrollbar-rxvt.o: scrollbar-rxvt.C $(DEPS) scrollbar-rxvt.intpro 145encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
205scrollbar-next.o: scrollbar-next.C $(DEPS) scrollbar-next.intpro 146encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
206scrollbar-xterm.o: scrollbar-xterm.C $(DEPS) scrollbar-xterm.intpro 147encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
207strings.o: strings.C $(DEPS) strings.intpro 148encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
208xdefaults.o: xdefaults.C $(DEPS) xdefaults.intpro version.h 149encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
209xpm.o: xpm.C $(DEPS) xpm.intpro 150encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
210encoding.o: encoding.C $(DEPS) encoding.h 151encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
211rxvtcolor.o: rxvtcolor.C $(DEPS) 152encoding.o: table/compose.h table/category.h
212iom.o: iom.C $(DEPS) iom.h 153ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
213 154ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
214command.lo: command.C $(DEPS) command.intpro command.h version.h 155fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
215defaultfont.lo: defaultfont.C $(DEPS) defaultfont.intpro defaultfont.h encoding.h 156fdpass_wrapper.o: ../libptytty/src/libptytty.h
216graphics.lo: graphics.C $(DEPS) graphics.intpro defaultfont.h 157init.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
217grkelot.lo: grkelot.C $(DEPS) grkelot.intpro grkelot.h 158init.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
218init.lo: init.C $(DEPS) init.intpro init.h 159init.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
219logging.lo: logging.C $(DEPS) logging.intpro logging.h 160init.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
220main.lo: main.C $(DEPS) main.intpro 161init.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
221menubar.lo: menubar.C $(DEPS) menubar.intpro menubar.h version.h 162keyboard.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
222misc.lo: misc.C $(DEPS) misc.intpro 163keyboard.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
223netdisp.lo: netdisp.C $(DEPS) netdisp.intpro netdisp.h 164keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
224ptytty.lo: ptytty.C $(DEPS) ptytty.intpro 165keyboard.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
225rxvt.lo: rxvt.C $(DEPS) 166keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h
226screen.lo: screen.C $(DEPS) screen.intpro defaultfont.h 167main.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
227scrollbar.lo: scrollbar.C $(DEPS) scrollbar.intpro 168main.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
228scrollbar-rxvt.lo: scrollbar-rxvt.C $(DEPS) scrollbar-rxvt.intpro 169main.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
229scrollbar-next.lo: scrollbar-next.C $(DEPS) scrollbar-next.intpro 170main.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
230scrollbar-xterm.lo: scrollbar-xterm.C $(DEPS) scrollbar-xterm.intpro 171main.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
231strings.lo: strings.C $(DEPS) strings.intpro 172misc.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
232xdefaults.lo: xdefaults.C $(DEPS) xdefaults.intpro version.h 173misc.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
233xpm.lo: xpm.C $(DEPS) xpm.intpro 174misc.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
234encoding.lo: encoding.C $(DEPS) encoding.h 175misc.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
235rxvtcolor.lo: rxvtcolor.C $(DEPS) 176misc.o: hookinc.h rsinc.h optinc.h
236iom.lo: iom.C $(DEPS) iom.h 177ptytty_wrapper.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
237 178ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
238 179ptytty_wrapper.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h
180ptytty_wrapper.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
181ptytty_wrapper.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
182ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C
183ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h
184ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C
185rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
186rxvt.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
187rxvt.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
188rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
189rxvt.o: hookinc.h rsinc.h optinc.h
190rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
191rxvtc.o: ../libptytty/src/estl.h emman.h ../libptytty/src/libptytty.h
192rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
193rxvtd.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
194rxvtd.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
195rxvtd.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
196rxvtd.o: hookinc.h rsinc.h optinc.h rxvtdaemon.h
197rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
198rxvtdaemon.o: ../libptytty/src/estl.h emman.h
199rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
200rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
201rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
202rxvtfont.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
203rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h
204rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
205rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
206rxvtimg.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
207rxvtimg.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
208rxvtimg.o: rxvtperl.h hookinc.h rsinc.h optinc.h
209rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
210rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
211rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
212rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
213rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
214rxvtperl.o: iom_perl.h
215rxvttoolkit.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
216rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
217rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
218rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
219rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
220rxvttoolkit.o: optinc.h
221rxvtutil.o: rxvtutil.h ../libptytty/src/ecb.h ../libptytty/src/estl.h emman.h
222rxvtutil.o: emman.c
223screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
224screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
225screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
226screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
227screen.o: hookinc.h rsinc.h optinc.h
228scrollbar-next.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
229scrollbar-next.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
230scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
231scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
232scrollbar-next.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
233scrollbar-next.o: hookinc.h rsinc.h optinc.h
234scrollbar-plain.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
235scrollbar-plain.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
236scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
237scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
238scrollbar-plain.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
239scrollbar-plain.o: hookinc.h rsinc.h optinc.h
240scrollbar-rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
241scrollbar-rxvt.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
242scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
243scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
244scrollbar-rxvt.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
245scrollbar-rxvt.o: hookinc.h rsinc.h optinc.h
246scrollbar-xterm.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
247scrollbar-xterm.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
248scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
249scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
250scrollbar-xterm.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
251scrollbar-xterm.o: hookinc.h rsinc.h optinc.h
252scrollbar.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
253scrollbar.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
254scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
255scrollbar.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
256scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h
257xdefaults.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
258xdefaults.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
259xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
260xdefaults.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
261xdefaults.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h keyboard.h
262rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
263rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
264rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
265rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
266rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
267rxvtperl.o: iom_perl.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines