help-make
[Top][All Lists]
Advanced

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

Re: make option for specific files


From: Paul Smith
Subject: Re: make option for specific files
Date: Mon, 28 Jun 2021 09:38:14 -0400
User-agent: Evolution 3.36.5-0ubuntu1

On Mon, 2021-06-28 at 10:39 +0200, lisa-asket@perso.be wrote:
> Have the following makefile and want to have an easy way to build
> "*rfc.texi" files using "make rfc".

Do you mean, "build PDFs for all the *rfc.texi files"?

In that case just:

  rfc: $(rfc:.texi=.pdf)

will do it.  Add rfc to your .PHONY target for cleanliness.

> pdfs := $(tfiles:.texi=.pdf)

You didn't show us the definition of tfiles; the makefile you posted
won't actually do anything.




reply via email to

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