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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines