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.178 by root, Mon Oct 28 14:07:59 2013 UTC vs.
Revision 1.184 by root, Mon Jul 8 02:59:51 2019 UTC

34 34
35first_rule: all 35first_rule: all
36dummy: 36dummy:
37 37
38COMMON = \ 38COMMON = \
39 background.o command.o rxvtfont.o init.o main.o misc.o \ 39 command.o rxvtfont.o init.o main.o misc.o \
40 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \ 40 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
41 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \ 41 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
42 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \ 42 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \
43 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@ 43 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@
44 44
105@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man1dir) 105@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man1dir)
106@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir) 106@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir)
107@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm 107@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
108@IF_PERL@ for ext in $(srcdir)/perl/*; do \ 108@IF_PERL@ for ext in $(srcdir)/perl/*; do \
109@IF_PERL@ test -f "$$ext" || continue; \ 109@IF_PERL@ test -f "$$ext" || continue; \
110@IF_PERL@ base="$${ext##*/}"; \ 110@IF_PERL@ base=`basename "$$ext"`; \
111@IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \ 111@IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \
112@IF_PERL@ < "$$ext" \ 112@IF_PERL@ < "$$ext" \
113@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "'urxvt-$$base'", $(PODOPTS))->parse_from_file' \ 113@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "'urxvt-$$base'", $(PODOPTS))->parse_from_file' \
114@IF_PERL@ > ../mantmp; \ 114@IF_PERL@ > mantmp; \
115@IF_PERL@ test -s ../mantmp && $(INSTALL_DATA) ../mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$base.$(man1ext); \ 115@IF_PERL@ test -s mantmp && $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$base.$(man1ext); \
116@IF_PERL@ < "$$ext" $(PERL) -ne '<>, (print <> . "\n"), exit if /^=head1/' >&3; \ 116@IF_PERL@ < "$$ext" $(PERL) -ne '<>, (print <> . "\n"), exit if /^=head1/' >&3; \
117@IF_PERL@ done 3>manlst 117@IF_PERL@ done 3>manlst
118@IF_PERL@ cat $(srcdir)/../doc/extensions.pod.top manlst $(srcdir)/../doc/extensions.pod.bot | \ 118@IF_PERL@ cat $(srcdir)/../doc/extensions.pod.top manlst $(srcdir)/../doc/extensions.pod.bot | \
119@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)-extensions", $(PODOPTS))->parse_from_file' \ 119@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)-extensions", $(PODOPTS))->parse_from_file' \
120@IF_PERL@ > mantmp 120@IF_PERL@ > mantmp
134 134
135perlxsi.c: Makefile 135perlxsi.c: Makefile
136 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt 136 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
137 137
138rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom 138rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
139 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@ 139 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap 'typemap.iom' -typemap 'typemap' -prototypes $(srcdir)/rxvtperl.xs >$@
140 140
141rxvtperl.o: rxvtperl.C perlxsi.c 141rxvtperl.o: rxvtperl.C perlxsi.c
142 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 142 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
143 143
144depend: 144depend:
145 makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1 145 makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1
146 146
147# makedepend has trouble finding these
148ev_cpp.o: ../libev/ev.c ../libev/ev_epoll.c ../libev/ev_kqueue.c ../libev/ev_linuxaio.c
149ev_cpp.o: ../libev/ev_poll.c ../libev/ev_port.c ../libev/ev_select.c ../libev/ev_win32.c
150
151
147# DO NOT DELETE: nice dependency list follows 152# DO NOT DELETE: nice dependency list follows
148 153
149background.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
150background.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
151background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
152background.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
153background.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
154background.o: optinc.h
155command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 154command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
156command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 155command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
157command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 156command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
158command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h 157command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
159command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h 158command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h
240rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 239rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
241rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h 240rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
242rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h 241rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
243rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h 242rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
244rxvttoolkit.o: optinc.h 243rxvttoolkit.o: optinc.h
245rxvtutil.o: rxvtutil.h ../libptytty/src/ecb.h ../libptytty/src/estl.h emman.h 244rxvtutil.o: emman.c emman.h ../libptytty/src/ecb.h rxvtutil.h
246rxvtutil.o: emman.c 245rxvtutil.o: ../libptytty/src/estl.h
247screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 246screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
248screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 247screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
249screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h 248screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
250screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h 249screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
251screen.o: hookinc.h rsinc.h optinc.h 250screen.o: hookinc.h rsinc.h optinc.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines