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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:20:47+00:00 2026-05-17T00:20:47+00:00

I am in the process of learning makefile creation. Current target is to scan

  • 0

I am in the process of learning makefile creation.

Current target is to scan the $(SOURCEDIR) for .c files and create (according to that lise of .c file paths in the format of /path/file.c) a nice $(VPATH) so I do not need to use recursive makefiles (aka pain in the a..).

Atm I am stuck with this, where $(SOURCETREE) will be empty on $(ECHO)

SOURCES := $(shell find $(SOURCEDIR) -name '*.c')
SOURCETREE := $(dir $(SOURCES))
SOURCETREE := $(shell $(ECHO) $(SOURCETREE) | $(SED) -e "s/[[:space:]]/\n/g" | uniq | $(SED) -e "s/\n/[[:space:]]/g");

Maybe I just do not get the point (got late again :/ )

Thanks for any help.

Note: In a bash shell it works perfectly on my linux workbox (I replace thevariables accordingly)
Note: I am no sed pro, so please explain if you do an voodoo with sed, thank you

  • 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-17T00:20:47+00:00Added an answer on May 17, 2026 at 12:20 am

    Comments:

    1. Remove the backticks. They are unnecessary; the $(shell) function already captures the command’s output.

    2. The echo/sed/uniq/sed chain can be replaced by ls/uniq. ls will print one file name per line so no need for the replace-and-undo song and dance.

    3. It looks like you’re losing the result from $(dir) because you use $(SOURCES) rather than $(SOURCETREE) in the third assignment.

    Result:

    SOURCES := $(shell find $(SOURCEDIR) -name '*.c')
    SOURCETREE := $(dir $(SOURCES))
    SOURCETREE := $(shell ls $(SOURCETREE) | uniq);
    

    Actually, even this shortened shell invocation is unnecessary. The $(sort) function will sort a list of names and remove duplicates. From make’s documentation: “Incidentally, since sort removes duplicate words, you can use it for this purpose even if you don’t care about the sort order.”

    SOURCES := $(shell find $(SOURCEDIR) -name '*.c')
    SOURCETREE := $(sort $(dir $(SOURCES)))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm in the process of learning C++. But there's so much more that I
I'm in the process of learning Javascript and I'm trying to create a simple
I am in the process of learning Backbone.js. I currently assume that if one
In my ongoing learning process (dialog boxes this time), I discovered that this works:
I am in the process of learning the MVC pattern in practise, meaning that
I'm in the process of learning how to create add-ins for Microsoft Office Word.
I'm in the process of learning Javascript and I'm trying to create a simple
Note that I'm a complete SQL noob and in the process of learning. Based
Im in the process of learning asp.net 3.5, currently on webparts and co. Ive
On the process of learning Assembly i got one question If i do the

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.