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.6 by pcg, Thu Dec 18 00:56:51 2003 UTC vs.
Revision 1.155 by sf-exg, Fri Dec 23 00:20:45 2011 UTC

1# $Id: Makefile.in,v 1.6 2003/12/18 00:56:51 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)
55RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) 41RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
56RXVTC_VERNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c-$(VERSION)$(EXEEXT)
57RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) 42RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
58RXVTD_VERNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d-$(VERSION)$(EXEEXT)
59RXVT_OLDNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-old$(EXEEXT)
60
61EXTPROS = command.extpro defaultfont.extpro graphics.extpro grkelot.extpro \
62 init.extpro logging.extpro main.extpro menubar.extpro misc.extpro \
63 netdisp.extpro ptytty.extpro screen.extpro scrollbar.extpro \
64 scrollbar-rxvt.extpro scrollbar-next.extpro scrollbar-xterm.extpro \
65 strings.extpro xdefaults.extpro xpm.extpro
66
67INTPROS = command.intpro defaultfont.intpro graphics.intpro grkelot.intpro \
68 init.intpro logging.intpro main.intpro menubar.intpro misc.intpro \
69 netdisp.intpro ptytty.intpro screen.intpro scrollbar.intpro \
70 scrollbar-rxvt.intpro scrollbar-next.intpro scrollbar-xterm.intpro \
71 strings.intpro xdefaults.intpro xpm.intpro
72
73DEPS = rxvt.h rxvtlib.h ${basedir}/config.h feature.h .protos
74 43
75# 44#
76# Distribution variables 45# Distribution variables
77# 46#
78 47
79DIST = $(HDRS) $(SRCS) Makefile.in gcc-Wall rxvtlib.h.in .indent.pro \ 48.SUFFIXES: .C .c .o
80 makeintprotos-awk makeextprotos-awk $(INTPROS) $(EXTPROS) .protos
81
82.SUFFIXES: .C .o .extpro .intpro .lo
83 49
84#------------------------------------------------------------------------- 50#-------------------------------------------------------------------------
85# inference rules 51# inference rules
86.C.o: 52.C.o:
87 $(COMPILE) -c $< 53 $(COMPILE) -c $<
88 54
89.C.lo:
90 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
91
92.s.lo:
93 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
94
95.S.lo:
96 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
97
98.C.intpro:
99 @$(RMF) $@.tmp
100 @$(AWK) -f $(srcdir)/makeintprotos-awk $< > $@.tmp
101 @if $(CMP) -s $@ $@.tmp ; then : ; else $(ECHO) "$(AWK) -f $(srcdir)/makeintprotos-awk $< > $@"; $(CP) $@.tmp $@; fi
102 @$(RMF) $@.tmp
103
104.C.extpro:
105 @$(RMF) $@.tmp
106 @$(AWK) -f $(srcdir)/makeextprotos-awk $< > $@.tmp
107 @if $(CMP) -s $@ $@.tmp ; then : ; else $(ECHO) "$(AWK) -f $(srcdir)/makeextprotos-awk $< > $@"; $(CP) $@.tmp $@; fi
108 @$(RMF) $@.tmp
109#------------------------------------------------------------------------- 55#-------------------------------------------------------------------------
56
110all: allbin 57all: allbin
111 58
112rxvt: version.h rxvt.o librxvt.la 59rxvt: rxvt.o $(COMMON)
113 $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) $(SUPLIB) -o $@ 60 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
114 61
115rxvtd: version.h rxvtd.o librxvt.la rxvtdaemon.o 62rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
116 $(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)
117 64
118rxvtc: version.h rxvtc.o rxvtdaemon.o 65rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
119 $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) $(SUPLIB) -o $@ 66 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
120 67
121.protos: $(EXTPROS)
122 @$(RMF) .protos
123 date >.protos
124
125librxvt.la: $(LIBOBJS)
126 $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) $(SUPLIB) -o $@
127#------------------------------------------------------------------------- 68#-------------------------------------------------------------------------
128tags: $(SRCS) $(HDRS) $(EXTRAHDRS)
129 ctags $(SRCS) $(HDRS) $(EXTRAHDRS)
130 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
131allbin: .protos rxvt rxvtd rxvtc 78allbin: rxvt rxvtd rxvtc
132 79
133alldoc: 80alldoc:
134 81
135clean: 82clean:
136 $(RMF) rxvt rxvtc rxvtd 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
137 85
86distclean: clean
87 rm -f Makefile
88
138realclean: clean 89realclean: distclean
139 $(RMF) tags librxvt.h 90 rm -f tags TAGS
140 91
141cleandir: realclean 92cleandir: realclean
142 93
143distclean: realclean 94install-perl:
144 if test $(srcdir) = .; then $(MAKE) realclean; fi 95@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
145 (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
146 100
147install: allbin alldoc 101install-bin: allbin
148 $(MKDIR) $(DESTDIR)$(includedir) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) 102 $(INSTALL) -d $(DESTDIR)$(bindir)
149 @if test x$(INSTALL_LIBRXVT) = xyes; then \ 103 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
150 $(ECHO) "$(LIBTOOL) --mode=install $(INSTALL_DATA) rxvtlib.h $(DESTDIR)$(includedir)/rxvtlib.h"; \ 104 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
151 $(LIBTOOL) --mode=install $(INSTALL_DATA) rxvtlib.h $(DESTDIR)$(includedir)/rxvtlib.h; \ 105 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
152 $(ECHO) "$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(DESTDIR)$(libdir)/librxvt.la"; \
153 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(DESTDIR)$(libdir)/librxvt.la; \
154 fi
155 $(RMF) $(RXVT_BINNAME)
156 $(RMF) $(RXVTC_BINNAME)
157 $(RMF) $(RXVTD_BINNAME)
158 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(RXVT_VERNAME)
159 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvtc $(RXVTC_VERNAME)
160 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvtd $(RXVTD_VERNAME)
161 $(LN) $(RXVT_VERNAME) $(RXVT_BINNAME)
162 $(LN) $(RXVTC_VERNAME) $(RXVTC_BINNAME)
163 $(LN) $(RXVTD_VERNAME) $(RXVTD_BINNAME)
164 106
165uninstall: 107install: install-bin install-perl
166 @$(ECHO) $(RMF) $(RXVT_VERNAME)
167 @$(RMF) $(RXVT_VERNAME)
168 @$(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(RXVT_BINNAME)"
169 @$(LIBTOOL) --mode=uninstall $(RMF) $(RXVT_BINNAME)
170 @if test x$(INSTALL_LIBRXVT) = xyes; then \
171 $(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(libdir)/librxvt.la"; \
172 $(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(libdir)/librxvt.la; \
173 $(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(includedir)/rxvtlib.h"; \
174 $(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(includedir)/rxvtlib.h; \
175 fi
176 108
177distdirs: 109perlxsi.c: Makefile
178 mkdir $(basedir)/../$(VERNAME)/$(thisdir) 110 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
179 111
180distcopy: .protos $(INTPROS) 112rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
181 $(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 >$@
182 114
183# ----------------------------------------------------------------------- 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
184# DO NOT DELETE: nice dependency list follows 121# DO NOT DELETE: nice dependency list follows
185#
186 122
187defaultfont.h: encoding.h rxvtvec.h 123background.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
188rxvtlib.h: rxvtcolor.h defaultfont.h 124background.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
189rxvtdaemon.o: rxvtdaemon.C rxvtdaemon.h 125background.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
190rxvtd.o: rxvtd.C $(DEPS) rxvtdaemon.h rxvtvec.h 126background.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
191rxvtc.o: rxvtc.C $(DEPS) rxvtdaemon.h rxvtvec.h 127background.o: optinc.h
192 128command.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h
193command.o: command.C $(DEPS) command.intpro command.h version.h 129command.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
194defaultfont.o: defaultfont.C $(DEPS) defaultfont.intpro defaultfont.h 130command.o: ../libev/ev.h callback.h scrollbar.h salloc.h
195graphics.o: graphics.C $(DEPS) graphics.intpro 131command.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
196grkelot.o: grkelot.C $(DEPS) grkelot.intpro grkelot.h 132command.o: version.h command.h keyboard.h
197init.o: init.C $(DEPS) init.intpro init.h defaultfont.h 133encoding.o: ../config.h encoding.h rxvtutil.h ../libecb/ecb.h
198logging.o: logging.C $(DEPS) logging.intpro logging.h 134encoding.o: table/iso8859_1.h table/iso8859_15.h table/iso8859_2.h
199main.o: main.C $(DEPS) main.intpro 135encoding.o: table/iso8859_3.h table/iso8859_4.h table/iso8859_5.h
200menubar.o: menubar.C $(DEPS) menubar.intpro menubar.h version.h 136encoding.o: table/iso8859_6.h table/iso8859_7.h table/iso8859_8.h
201misc.o: misc.C $(DEPS) misc.intpro 137encoding.o: table/iso8859_9.h table/iso8859_10.h table/iso8859_11.h
202netdisp.o: netdisp.C $(DEPS) netdisp.intpro netdisp.h 138encoding.o: table/iso8859_13.h table/iso8859_14.h table/iso8859_16.h
203ptytty.o: ptytty.C $(DEPS) ptytty.intpro 139encoding.o: table/koi8_r.h table/koi8_u.h table/ksc5601_1987_0.h table/big5.h
204rxvt.o: rxvt.C $(DEPS) 140encoding.o: table/gbk_0.h table/gb2312_1980_0.h table/cns11643_1992_1.h
205screen.o: screen.C $(DEPS) screen.intpro defaultfont.h 141encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
206scrollbar.o: scrollbar.C $(DEPS) scrollbar.intpro 142encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
207scrollbar-rxvt.o: scrollbar-rxvt.C $(DEPS) scrollbar-rxvt.intpro 143encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
208scrollbar-next.o: scrollbar-next.C $(DEPS) scrollbar-next.intpro 144encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
209scrollbar-xterm.o: scrollbar-xterm.C $(DEPS) scrollbar-xterm.intpro 145encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
210strings.o: strings.C $(DEPS) strings.intpro 146encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
211xdefaults.o: xdefaults.C $(DEPS) xdefaults.intpro version.h 147encoding.o: table/compose.h table/category.h
212xpm.o: xpm.C $(DEPS) xpm.intpro 148ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
213encoding.o: encoding.C $(DEPS) encoding.h 149ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
214rxvtcolor.o: rxvtcolor.C $(DEPS) 150fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
215iom.o: iom.C $(DEPS) iom.h 151fdpass_wrapper.o: ../libptytty/src/libptytty.h
216 152init.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h
217command.lo: command.C $(DEPS) command.intpro command.h version.h 153init.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
218defaultfont.lo: defaultfont.C $(DEPS) defaultfont.intpro defaultfont.h encoding.h 154init.o: ../libev/ev.h callback.h scrollbar.h salloc.h
219graphics.lo: graphics.C $(DEPS) graphics.intpro defaultfont.h 155init.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
220grkelot.lo: grkelot.C $(DEPS) grkelot.intpro grkelot.h 156init.o: init.h keyboard.h
221init.lo: init.C $(DEPS) init.intpro init.h 157keyboard.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
222logging.lo: logging.C $(DEPS) logging.intpro logging.h 158keyboard.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
223main.lo: main.C $(DEPS) main.intpro 159keyboard.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
224menubar.lo: menubar.C $(DEPS) menubar.intpro menubar.h version.h 160keyboard.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
225misc.lo: misc.C $(DEPS) misc.intpro 161keyboard.o: optinc.h keyboard.h
226netdisp.lo: netdisp.C $(DEPS) netdisp.intpro netdisp.h 162main.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h
227ptytty.lo: ptytty.C $(DEPS) ptytty.intpro 163main.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
228rxvt.lo: rxvt.C $(DEPS) 164main.o: ../libev/ev.h callback.h scrollbar.h salloc.h
229screen.lo: screen.C $(DEPS) screen.intpro defaultfont.h 165main.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
230scrollbar.lo: scrollbar.C $(DEPS) scrollbar.intpro 166main.o: init.h keyboard.h
231scrollbar-rxvt.lo: scrollbar-rxvt.C $(DEPS) scrollbar-rxvt.intpro 167misc.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h
232scrollbar-next.lo: scrollbar-next.C $(DEPS) scrollbar-next.intpro 168misc.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
233scrollbar-xterm.lo: scrollbar-xterm.C $(DEPS) scrollbar-xterm.intpro 169misc.o: ../libev/ev.h callback.h scrollbar.h salloc.h
234strings.lo: strings.C $(DEPS) strings.intpro 170misc.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
235xdefaults.lo: xdefaults.C $(DEPS) xdefaults.intpro version.h 171ptytty_wrapper.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
236xpm.lo: xpm.C $(DEPS) xpm.intpro 172ptytty_wrapper.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h
237encoding.lo: encoding.C $(DEPS) encoding.h 173ptytty_wrapper.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
238rxvtcolor.lo: rxvtcolor.C $(DEPS) 174ptytty_wrapper.o: salloc.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h
239iom.lo: iom.C $(DEPS) iom.h 175ptytty_wrapper.o: rsinc.h optinc.h ../libptytty/src/logging.C
240 176ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h
241 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