bug-automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: comment after trailing backslash inconsistent warning


From: Karl Berry
Subject: Re: comment after trailing backslash inconsistent warning
Date: Sat, 18 Apr 2009 17:10:31 -0500

    There is no appendix to your message.

As usual :).

The line numbers are probably off now since I made more
changes since sending the message, but the essential point is that it
complains about \
#
at the end of man1_MANS definition (it is not present below), but does
not complain about the same at the end of EXTRA_DIST (twice).

    IIRC there is some portability issue connected with this, 

No doubt.  I doubt the portability issue, whatever it is, relevant to my
source, but I won't put you to the trouble of looking it up.  It seems
better to just put up with the lack of a final \ than introduce
something in Automake to conditionally silence the warning.

Thanks,
karl


##
OS = UNIX
PAPER = a4
CHMOD = chmod
BINMODE = +x

AM_CPPFLAGS = -DUNIX -DPAPER=\"$(PAPER)\"

bin_PROGRAMS = epsffit psbook psnup psresize psselect pstops
bin_SCRIPTS = getafm showchar \
              extractres fixdlsrps fixfmps fixmacps fixpsditps fixpspps \
              fixscribeps fixtpps fixwfwps fixwpps fixwwps includeres psmerge
CLEANFILES = $(bin_SCRIPTS)

PERL = /usr/bin/env perl
MAKETEXT = $(PERL) $(srcdir)/maketext

man1_MANS = epsffit.1 psbook.1 psnup.1 psresize.1 psselect.1 pstops.1 \
            getafm.1 \
            extractres.1 fixdlsrps.man fixfmps.man fixmacps.man \
            fixpsditps.man fixpspps.man fixscribeps.man fixtpps.man \
            fixwfwps.man fixwpps.man fixwwps.man includeres.man psmerge.man
dist_man_MANS = $(man1_MANS)

%: %.pl
        $(MAKETEXT) OS=$(OS) PERL="$(PERL)" $< >$@

%: %.sh
        cp $< $@
        $(CHMOD) $(BINMODE) $@

%.1: %.man
        $(MAKETEXT) PAPER=$(PAPER) "MAN=$(man1_MANS)" $< >$@

epsffit_SOURCES = \
        config.h \
        epsffit.c \
        pserror.c \
        pserror.h

psbook_SOURCES = \
        config.h \
        psbook.c \
        pserror.c \
        pserror.h \
        psutil.c \
        psutil.h

psnup_SOURCES = \
        config.h \
        pserror.c \
        pserror.h \
        psnup.c \
        psspec.c \
        psspec.h \
        psutil.c \
        psutil.h

psresize_SOURCES = \
        config.h \
        pserror.c \
        pserror.h \
        psresize.c \
        psspec.c \
        psspec.h \
        psutil.c \
        psutil.h

psselect_SOURCES = \
        config.h \
        pserror.c \
        pserror.h \
        psselect.c \
        psutil.c \
        psutil.h

pstops_SOURCES = \
        pserror.c \
        pserror.h \
        psspec.c \
        psspec.h \
        pstops.c \
        psutil.c \
        psutil.h

## 
EXTRA_DIST = \
        LICENSE

# scripts.
EXTRA_DIST += \
        getafm.sh \
        showchar.sh \
        extractres.pl \
        fixdlsrps.pl \
        fixfmps.pl \
        fixmacps.pl \
        fixpsditps.pl \
        fixpspps.pl \
        fixscribeps.pl \
        fixtpps.pl \
        fixwfwps.pl \
        fixwpps.pl \
        fixwwps.pl \
        includeres.pl \
        psmerge.pl \
#

## Not used
##
EXTRA_DIST += \
        Makefile.bcc \
        Makefile.msc \
        Makefile.nt \
        Makefile.os2 \
        Makefile.sc \
        Makefile.unix \
        Makefile.wat \
        descrip.mms \
        maketext \
        md68_0.ps \
        md71_0.ps \
#

## Eventually delete these files
##
EXTRA_DIST += Makefile.in.orig configure.in.orig




reply via email to

[Prev in Thread] Current Thread [Next in Thread]