Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8771189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:43:23+00:00 2026-06-13T17:43:23+00:00

I am trying to write a relatively simple Makefile, but I am not sure

  • 0

I am trying to write a relatively simple Makefile, but I am not sure how to best condense the rules using patterns. I tried using %, but I ran into difficulties. Here is the Makefile in its expanded form:

all : ./115/combine_m115.root ./116/combine_m116.root ... ./180/combine_m180.root

./115/combine_m115.root : ./115/comb.root
    bash make_ASCLS.sh -l 115 comb.root

./116/combine_m116.root : ./116/comb.root
    bash make_ASCLS.sh -l 116 comb.root
...
./180/combine_m180.root : ./180/comb.root
    bash make_ASCLS.sh -l 180 comb.root
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T17:43:24+00:00Added an answer on June 13, 2026 at 5:43 pm

    Unfortunately, we don’t have a clean way to do this in Make. This task combines a couple of things Make doesn’t do well.

    Make can’t handle wildcards very well (or regular expressions at all), so constructions like ./%/combine_m%.root : ./%/comb.root won’t work. I think the closest we can get is with a canned recipe:

    define apply_script
    ./$(1)/combine_m$(1).root : ./$(1)/comb.root
        bash make_ASCLS.sh -l $(1) comb.root
    endef
    
    $(eval $(call apply_script,115))
    $(eval $(call apply_script,116))
    ...
    $(eval $(call apply_script,180))
    

    We can condense things a little more like this:

    NUMBERS := 115 116 # ...180
    
    TARGS := $(foreach n, $(NUMBERS), ./$(n)/combine_m$(n).root)
    
    all : $(TARGS)
    
    ...
    
    $(foreach n, $(NUMBERS), $(eval $(call apply_script,$(n))))
    

    There’s also a way to generate NUMBERS, but it’s an even uglier hack.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There is a relatively simple thing I'm trying to achieve but I'm unsure how
Hello I am trying to write a simple program for fun.. But I am
I'm trying to write a relatively simple twitter query in php with result like
I am trying to do something relatively simple with iTextSharp, but I always find
I am trying write a function that generates simulated data but if the simulated
Trying to write out syslog entries containing strings but they don't register. // person.name
I am trying to write a simple custom button in wx.Python. My code is
I am trying to create a simple RSS parser using the two frameworks. However
I'm implementing a relatively simple autosave system and I'd like to do so using
I am trying to write a simple PHP script that writes a string to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.