help-make
[Top][All Lists]
Advanced

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

make option for specific files


From: lisa-asket
Subject: make option for specific files
Date: Mon, 28 Jun 2021 10:39:30 +0200 (CEST)

Have the following makefile and want to have an easy way to build "*rfc.texi" 
files using

"make rfc".



.PHONY: all new again clean

ch6 := $(wildcard *amcoh.texi)
igm := $(wildcard *igm.texi)
rfc := $(wildcard *rfc.texi)

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

all: ${pdfs}

%.pdf: %.texi
    texi2pdf $< -o $@

clean:
    rm -f ${pdfs}

again:
    ${MAKE} clean
    ${MAKE}

new:
    ${MAKE} again


reply via email to

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