Inline definition files always have the file name extension ".icc".
-Template include files always have the file name extension ".tcc".
-
=head2 INDENTATION
=head2 Disadvantages
-=over 4
+=over 5
=item *
=head2 Proposal
-=over 4
+=over 5
=item *
=head2 Types
-=over 4
+=over 5
=item C<byte>
The following types modify the meaning of the prefix.
These are precede the prefixes:
-=over 4
+=over 5
=item C<a>
=back
-=over 4
+=over 5
=item C<loop_i>
#
-OUTPODFILES = $(patsubst %,$(outdir)/%,$(PODFILES))
+OUTPODFILES = $(addprefix $(outdir)/,$(PODFILES))
TEXTFILES = $(OUTPODFILES:.pod=.text)
GROFFFILES = $(OUTPODFILES:.pod=.1)
HTMLFILES = $(OUTPODFILES:.pod=.html)
#
default: do-doc
-
+ echo $(TEXTFILES) $(OUTPODFILES) $(PODFILES)
do-doc: $(TEXTFILES)
-html: $(pod)
- pod2html
+html: $(HTMLFILES)
htmldist: html
./$(lily_bindir)/make_website
#
localclean:
- rm -f $(TEXTFILES) $(HTMLFILES) $(GROFFFILES)
+ rm -f $(TEXTFILES) $(HTMLFILES) $(GROFFFILES) $(HTMLFILES)
localinstall: $(outdir)/lilypond.1 $(outdir)/mudela.5
$(INSTALL) -d $(mandir)/man5
# this is supposed to clear all suffixes:
.SUFFIXES:
+
# so why does make still consider xx.y : RCS/xx.y,v ?
# there is no suffix ,v anymore!
-.SUFFIXES: .cc .o .hh .y .l .pod .txt .1 .dep
+.SUFFIXES: .cc .o .hh .y .l .pod .txt .1 .dep .html
-# cancel implicit rules:
-#
-# shit, how to get rid of these stupid built-in rules?
-# include ./$(depth)/make/Builtin-rules.make
-#
# compile rules:
#
$(depth)/%.text: $(outdir)/%.text
cp $< $@
+$(outdir)/%.html: %.pod
+ $(pod2html) $<
+ mv $(notdir $@) $(outdir)/
+
$(outdir)/%.5: %.pod
$(pod2groff)
$(outdir)/%.1: %.pod