vote up 2 vote down star

I have Makefile under a directory and directory has many .pm ( perl files ) I want to add makefile at this directory level which does perl file syntax checking. Basically I want to add:

perl -c <filename>

How to get list of files automatically in that directory without hardcoding.

flag
If you find an answer that works for you, it is customary to accept that answer (with the tick mark that appears under it when you look at the answers; it goes green when you choose it). – Jonathan Leffler Oct 1 at 19:47
Having said which, I see that 'Avinash' asked the question but a different 'Avinash' said "this works for me". – Jonathan Leffler Oct 1 at 19:48

4 Answers

vote up 1 vote down

You can try the filter command:

PMFILES=$(filter %.pm, $(SRC))

Documentation for filter is hard to find. See here for an example.

link|flag
vote up 1 vote down

This is the normal workaround:

check_pm_syntax:
        for file in *.pm; do ${PERL} -c $$file; done

You run 'make check_pm_syntax' and it goes off and runs the shell loop for all the *.pm files it can find. You can simply list check_pm_syntax as a pre-requisite for your all target if you like (but it means you'll always do work when you build all). The only time this causes trouble is if there are no *.pm files in the directory.

link|flag
this one works for me Thanks. – Avinash Oct 1 at 17:58
vote up 0 vote down

thanks guys, check_pm_syntax solutions works form me.

link|flag
vote up 0 vote down

Here's a slightly different approach:

.PHONY: check_%.pm
check_%.pm:
    perl -c $*.pm

check_all: $(addprefix check_,$(wildcard *.pm))
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.