Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So, my project directory looks like this:

/project
    Makefile
    main
    /src
        main.cpp
        foo.cpp
        foo.h
        bar.cpp
        bar.h
    /obj
        main.o
        foo.o
        bar.o

What I would like my makefile to do would be to compile all .cpp files in the /src folder to .o files in the /obj folder, then link all the .o files in /obj into the output binary in the root folder /project.

The problem is, I have next to no experience with Makefiles, and am not really sure what to search for to accomplish this.

Also, is this a "good" way to do this, or is there a more standard approach to what I'm trying to do?

share|improve this question
@aaa: I'm guessing the OP wants a solution that doesn't require explicitly listing each source file. – Jefromi May 25 '10 at 20:08
I don't want to specify each source file I have, and I've tried to read that manual before, but I find it disorganized and hard to understand. I learn much better from an actual example that does what I expect it does and is well explained, rather than dry technical manuals. – Austin Hyde May 25 '10 at 20:08
okay. But make documentation is excellent with good examples (it is not try technical manual). you are looking for pattern rules: gnu.org/software/make/manual/make.html#Pattern-Rules – Anycorn May 25 '10 at 20:13
2  
That looks a little more like what I want. Though, IMHO, the make manual is a little dry, as it seems more targeted to developers who are at an intermediate level with make, and beyond that is very large and in-depth. Perhaps too much so. – Austin Hyde May 25 '10 at 20:39

1 Answer

up vote 25 down vote accepted

So, the makefile part of the question:

this is pretty easy, unless you don't need to generalize try something like the code below (but replace space indentation with tabs near g++)

CPP_FILES := $(wildcard src/*.cpp)
OBJ_FILES := $(addprefix obj/,$(notdir $(CPP_FILES:.cpp=.o)))
LD_FLAGS := ...
CC_FLAGS := ...

main.exe: $(OBJ_FILES)
   g++ $(LD_FLAGS) -o $@ $^

obj/%.o: src/%.cpp
   g++ $(CC_FLAGS) -c -o $@ $<

And as guys mentioned already, always have GNU Make Manual around, it is very helpful.

share|improve this answer
2  
Ah, you beat me by seconds. But I suggest OBJ_FILES = $(patsubst src/%.cpp,obj/%.o,$(CPP_FILES)). – Beta May 25 '10 at 20:48
1  
I had to change this for it to work: $< should be $^ for main.exe's rule and I think there's a typo with obj/%.o: src/%cpp. – oscode Jun 27 '12 at 11:56
@oscode - why typo? – bobah Jun 28 '12 at 6:47
1  
@bobah You are missing a '.' in your objects rule for the cpp – regomodo Sep 25 '12 at 12:32
@regomodo - thanks, fixed – bobah Sep 25 '12 at 14:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.