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.170 by root, Fri Sep 21 22:55:56 2012 UTC vs.
Revision 1.171 by root, Fri Sep 21 23:26:20 2012 UTC

6exec_prefix = @exec_prefix@ 6exec_prefix = @exec_prefix@
7bindir = @bindir@ 7bindir = @bindir@
8libdir = @libdir@ 8libdir = @libdir@
9man1dir = @mandir@/man1 9man1dir = @mandir@/man1
10man1ext = 1 10man1ext = 1
11man3dir = @mandir@/man3
12man3ext = 3
13PODOPTS = quotes => q<"> , center => q<RXVT-UNICODE>, release => q<$(RXVTNAME)-$(VERSION)>
11CXX = @CXX@ 14CXX = @CXX@
12PERL = @PERL@ 15PERL = @PERL@
13INSTALL = @INSTALL@ 16INSTALL = @INSTALL@
14INSTALL_PROGRAM = @INSTALL@ -m 755 17INSTALL_PROGRAM = @INSTALL@ -m 755
15INSTALL_DATA = @INSTALL@ -m 644 18INSTALL_DATA = @INSTALL@ -m 644
24LINK = @LINKER@ $(LDFLAGS) 27LINK = @LINKER@ $(LDFLAGS)
25EXEEXT = @EXEEXT@ 28EXEEXT = @EXEEXT@
26PERLFLAGS = @PERLFLAGS@ 29PERLFLAGS = @PERLFLAGS@
27PERLLIB = @PERLLIB@ 30PERLLIB = @PERLLIB@
28 31
29srcdir = @srcdir@ 32srcdir = @srcdir@
30VPATH = @srcdir@ 33VPATH = @srcdir@
31 34
32first_rule: all 35first_rule: all
33dummy: 36dummy:
34 37
35COMMON = \ 38COMMON = \
82allbin: rxvt rxvtd rxvtc 85allbin: rxvt rxvtd rxvtc
83 86
84alldoc: 87alldoc:
85 88
86clean: 89clean:
87 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C mantmp 90 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C manlst mantmp
88 rm -f *.o 91 rm -f *.o
89 92
90distclean: clean 93distclean: clean
91 rm -f Makefile 94 rm -f Makefile
92 95
97 100
98install-perl: 101install-perl:
99@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir) 102@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
100@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt 103@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
101@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl 104@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
105@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man1dir)
106@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir)
102@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
103@IF_PERL@ cd $(srcdir)/perl; for ext in *; do \ 108@IF_PERL@ cd $(srcdir)/perl; \
109@IF_PERL@ for ext in *; do \
104@IF_PERL@ test -f "$$ext" || continue; \ 110@IF_PERL@ test -f "$$ext" || continue; \
105@IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \ 111@IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \
106@IF_PERL@ < "$$ext" \ 112@IF_PERL@ < "$$ext" \
107@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "abc", quotes => q<"> , center => q<RXVT-UNICODE>)->parse_from_file' \ 113@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "'rxvt-$$ext'", $(PODOPTS))->parse_from_file' \
108@IF_PERL@ > ../mantmp; \ 114@IF_PERL@ > ../mantmp; \
109@IF_PERL@ test -s ../mantmp && $(INSTALL_DATA) ../mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$ext.$(man1ext); \ 115@IF_PERL@ test -s ../mantmp && $(INSTALL_DATA) ../mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$ext.$(man1ext); \
110@IF_PERL@ done 116@IF_PERL@ < "$$ext" $(PERL) -ne '<>, (print <> . "\n"), exit if /^=head1/' >&3; \
117@IF_PERL@ done 3>../manlst
118@IF_PERL@ cat ../doc/extensions.pod.top manlst ../doc/extensions.pod.bot | \
119@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)-extensions", $(PODOPTS))->parse_from_file' \
120@IF_PERL@ > mantmp
121@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-extensions.$(man1ext)
122@IF_PERL@ < urxvt.pm \
123@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)perl", $(PODOPTS))->parse_from_file' \
124@IF_PERL@ > mantmp
125@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext)
111 126
112install-bin: allbin 127install-bin: allbin
113 $(INSTALL) -d $(DESTDIR)$(bindir) 128 $(INSTALL) -d $(DESTDIR)$(bindir)
114 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 129 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
115 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 130 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines