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

  • Home
  • SEARCH
  • 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 95089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:36:13+00:00 2026-05-10T23:36:13+00:00

make is not only useful for building your programming project, but it seems to

  • 0

‘make’ is not only useful for building your programming project, but it seems to be under-used in other areas.

For example, many shell scripts can be rewritten as Makefiles to allow independent parts to run in parallel (with ‘make -jXX’) to keep all your CPU cores busy, with the explicitly declared dependencies as an added benefit in case you’d ever consider reordering some tasks with side effects in your shell script.

Do you have any interesting stories with unusual uses of make / Makefiles to share? Do you use some other utility as a cheap job scheduler?

  • 1 1 Answer
  • 1 View
  • 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. 2026-05-10T23:36:14+00:00Added an answer on May 10, 2026 at 11:36 pm

    Make’s parallelism is particularly handy for shell scripting. Say you want to get the ‘uptime’ of a whole set of hosts (or basically perform any slow operation). You could do it in a loop:

    cat hosts | while read host; do echo '$host: $(ssh $host uptime)'; done 

    This works, but is slow. You can parallelise this by spawning subshells:

    cat hosts | while read host; do (echo '$host: $(ssh $host uptime)')&; done 

    But now you have no control over how many threads you spawn, and CTRL-C won’t cleanly interrupt all threads.

    Here is the Make solution: save this to a file (eg. showuptimes) and mark as executable:

    #!/usr/bin/make -f  hosts:=$(shell cat) all: ${hosts}  ${hosts} %:         @echo '$@: `ssh $@ uptime`'  .PHONY: ${hosts} all 

    Now running cat hosts | ./showuptimes will print the uptimes one by one. cat hosts | ./showuptimes -j will run them all in parallel. The caller has direct control over the degree of parallelisation (-j), or can specify it indirectly by system load (-l).

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

Sidebar

Related Questions

My question may not make sense but I have valid reason. We use .net
Our Tfs server (Tfs2008) has smtp server installed. But we could not make Tfs
How can I make my window not have a title bar but appear in
In Visual c# Express Edition, is it possible to make some (but not all)
Would it not make sense to support a set of languages (Java, Python, Ruby,
I can make Firefox not display the ugly dotted focus outlines on links with
I am writing a crawler in Python, in order to make Ctrl+C not to
Is there any real reason not to make a member function virtual in C++?
What is the best way to make trailing slashes not matter in the latest
I'm writing a web service and I need to make sure only valid applications

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.