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 1115357
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T03:08:39+00:00 2026-05-17T03:08:39+00:00

I’m trying to create a Makefile that will download and process file a file

  • 0

I’m trying to create a Makefile that will download and process file a file to generate targets, this is a simplified version:

default: all
.PHONY: all clean filelist.d
clean:
    @rm -fv *.date *.d

#The actual list comes from a FTP file, but let's simplify things a bit
filelist.d:
    @echo "Getting updated filelist..."
    @echo "LIST=$(shell date +\%M)1.date $(shell date +\%M)2.date" > $@
    @echo 'all: $$(LIST)' >> $@

%.date:
    touch $@

-include filelist.d

Unfortunately the target all doesn’t get updated properly on the first run, it needs to be run again to get the files. This is the output I get from it:

 $ make
Getting updated filelist...
make: Nothing to be done for `default'.
 $ make
Getting updated filelist...
touch 141.date
touch 142.date
touch 143.date

I’m using GNU Make 3.81 whose documentation states that it reloads the whole thing if the included files get changed. What is going wrong?

  • 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-05-17T03:08:39+00:00Added an answer on May 17, 2026 at 3:08 am

    You have specified filelist.d as a .PHONY target, so make believes making that target doesn’t actually update the specified file. However, it does, and the new contents are used on the next run. For the first run, the missing file isn’t an error because include is prefixed with the dash.

    Remove filelist.d from .PHONY. However, remember it won’t be regenerated again until you delete it (as it doesn’t depend on anything).

    By the same token, you should include “default” in .PHONY.


    I wrote a shell script rather than lump all this in the makefile:

    #!/bin/bash
    # Check whether file $1 is less than $2 days old.
    
    [ $# -eq 2 ] || {
      echo "Usage: $0 FILE DAYS" >&2
      exit 2
    }
    
    FILE="$1"
    DAYS="$2"
    
    [ -f "$FILE" ] || exit 1  # doesn't exist or not a file
    
    TODAY=$(date +%s)
    TARGET=$(($TODAY - ($DAYS * 24 * 60 * 60)))
    MODIFIED=$(date -r "$FILE" +%s)
    
    (($TARGET < $MODIFIED))
    

    Replace X with the max number of days that can pass before filelist.d is downloaded again:

    filelist.d: force-make
            ./less-than-days $@ X || command-to-update
    .PHONY: force-make
    force-make:
    

    Now filelist.d depends on a .PHONY target, without being a phony itself. This means filelist.d is always out of date (phony targets are always “new”), but its recipe only updates the file periodically.

    Unfortunately, this requires you to write the update command as a single command, and space may be a problem if it is long. In that case, I would put it in a separate script as well.

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

Sidebar

Related Questions

I am trying to loop through a bunch of documents I have to put
I have some data like this: 1 2 3 4 5 9 2 6
I have a bunch of posts stored in text files formatted in yaml/textile (from
I'm making a simple page using Google Maps API 3. My first. One marker

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.