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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:09:29+00:00 2026-06-13T18:09:29+00:00

So my task is simple, I have created the makefile (New with makefiles) and

  • 0

So my task is simple, I have created the makefile (New with makefiles) and I want to keep my .o files in a different folder to have a cleaner directory and allow the usage of .o files by others.

I searched and found many solution pointing to using -o $< $@

However, it is giving me that g++: cannot specify -o with -c or -S with multiple files

This is what I want to do:

$(OBJECT_PATH)/file1.o: $(SOURCE_PATH)/file2.cpp $(SOURCE_PATH)/file1.cpp
        $(CC) $(CFLAGS) $(SOURCE_PATH)/file2.cpp $(SOURCE_PATH)/file1.cpp -o $@

file1.cpp has #include “file1.h”, so from what I read I should include file1.cpp in the dependencies. However, now I can’t export to a different directory.

Is there a solution? Or do I have the concept 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-06-13T18:09:31+00:00Added an answer on June 13, 2026 at 6:09 pm

    Use make -d or even better remake -x to understand what commands are invoked.

    Run also make -p to understand what builtin rules are used.

    We cannot help you more, because we have no idea if you redefined CFLAGS.

    And C++ compilation should better be done with g++ that is CXX and CXXFLAGS, e.g. with (I am extracting this from my make -p output)

    LINK.cc = $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH)
    COMPILE.cc = $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
    CXX = g++
    %.o: %.cc
          $(COMPILE.cc) $(OUTPUT_OPTION) $<
    

    I strongly suggest to have CXXFLAGS= -Wall -g at least during the development phase. Learn also to use gdb and valgrind.

    You could have the following in your Makefile

     CXXFLAGS= -g -Wall
     SOURCES=f1.cc f2.cc
     SOURCE_PATH=yoursourcedir/
     OBJECT_PATH=yourobjectdir/
     SRCFILES=$(patsubst %.cc,$(SOURCE_PATH)/%.cc,$(SOURCES))
     OBJFILES=$(patsubst %.cc,$(OBJECT_PATH)/%.o,$(SOURCES))
     PROGFILE=$(OBJECT_PATH)
     .PHONY: all clean
     all: $(PROGFILE)
     $(PROGFILE): $(OBJFILES)
             $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
     $(OBJECT_PATH)/%.o: $(SOURCE_PATH)/%.cc
             $(COMPILE.cc)  $(OUTPUT_OPTION) $<
     clean:
             $(RM) $(OBJECT_PATH)/*.o $(PROGFILE)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to Scala, SBT and Specs. I have created a simple specification using
I have created a task in Symfony 1.4 that loads in some CSV files
i Have been given this simple task , I want to connect to facebook
I have a simple task to do using PHP dealing with pagination. The idea
I have a simple task. I have an existing project with a web service
I have a simple task that I can't find a solution for, and I'm
I know zero javascript, and have one simple task: Find all text in the
I have simple WPF layout task and looking to avoid code-behind if possible. I
I have a very simple task: add the contents of a textField to an
I have a very simple task I am trying to do in Groovy but

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.