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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T19:51:05+00:00 2026-06-02T19:51:05+00:00

   With my Makefile, I’m trying to get my all my objects and binaries

  • 0

   With my Makefile, I’m trying to get my all my objects and binaries to end up in a Release directory. Seems every permutaion I’ve tried has some error so I’m asking for some help. Here is what I have and I need to know how to alter it. Thanks.

BUILDDIR = Release
CXXFLAGS =      -O2 -g -Wall -fmessage-length=0
LDFLAGS=
HEADERS = $(wildcard *.h)
SOURCES = $(wildcard *.cpp)
OBJECTS = $(SOURCES:.cpp=.o)
LIBS =
EXECUTABLE= MyProgram

all:  $(HEADERS) $(SOURCES) $(EXECUTABLE)

$(EXECUTABLE): $(OBJECTS) 
        $(CXX) $(LDFLAGS) $(OBJECTS) -o $@

clean:
        rm -f $(OBJECTS) $(EXECUTABLE)
  • 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-02T19:51:07+00:00Added an answer on June 2, 2026 at 7:51 pm

    Modify these lines as follows:

    OBJECTS := $(SOURCES:%.cpp=$(BUILDDIR)/%.o)
    
    EXECUTABLE := $(BUILDDIR)/MyProgram
    

    Then there are two options. The first is to use vpath to locate sources needed to be compiled into objects. The second is to use explicit pattern rule:

    $(BUILDDIR)/%.o : ./%.cpp
        $(CXX) $(CXXFLAGS) -o $@ -c $<
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

    All I want to get only All without <ins> When I use
I am trying to convert all &nbsp; instances to regular spaces in PHP: echo
It seems UITextFields convert all non-breaking spaces (nbsp, U+00A0) to spaces (U+0020). This causes
I have a Visual Studio 2005/ C# ClickOnce application that gets all its data from a
  I've started working on a project that loads all of the different pages
In Objective-C I have a timer fire every 0.1 seconds and increment a double value
Inspired by Stack Overflow question Idomatic batch processing of text in Emacs? I tried out
I have a table: id group data 1  a     10 2  a     20 3  b     10 4  b     20 I want to get ids
   I'm currently looking for a more efficient method, via VBA, to get information transferred
I'm trying to initialize a 2 GB SanDisk SD card on a Cypress PSoC 5

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.