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.

A common type of makefile has a line like this:

OBJS=something.o other.o third.o progname.o

progname: $(OBJS)

Then you would run make progname. But GNU Make can also generate the list of o-files itself from all the c-files it sees in the current directory. How is this done?

Basically, I want to be able to add C files to the directory without having to change the makefile.

(Is it for instance through some shell-magic, or is there is a built-in function for this?)

share|improve this question

4 Answers

up vote 2 down vote accepted

To view all the defined rules (include the implicit ones), issue make -p.

However the fact that make knows how to generate object files from source files, does not mean that it should do this. Make will try to do the bear minimum in order to satisfy the target you ask it to build.

If you want make to compile all the sources into object in the current directory you will need a rule that will depend on all the objects, e.g.:

all: $(patsubst %.c,%.o,$(wildcard *.c))
share|improve this answer
1  
I took the liberty to change from 'shell ls *.c' to 'wildcard *.c' since that is more portable. – Prof. Falken Apr 11 '11 at 7:33
Thank, @Amigable Clark Kant, indeed the $(shell ls) is the ugly way to do it, and your solution is certainly cleaner. – Chen Levy Apr 11 '11 at 7:40
Thank you for answering my question. :-) – Prof. Falken Apr 11 '11 at 7:52

You can expand a shell command to give you a list of files. You can also use implicit rules.

share|improve this answer
OK, for completeness, how? – Prof. Falken Apr 11 '11 at 6:39
You'll have to look at the docs on that page. The basic idea is that make "knows" how to create certain binaries from sources for a large number of "standard" programs. You can use this knowledge to simply tell it "this is the target - build it from appropriately named sources". I can't give you examples since it's been over 3 years since I've used make and it's swapped out of my head. – Noufal Ibrahim Apr 11 '11 at 6:41

It can also be done like this:

SRCS = $(wildcard *.c)
OBJS = $(SRCS:.c=.o)

progname: $(OBJS)

Which works just fine if the object file with main() in it is "progname.o".

share|improve this answer

It can be done like this:

$(ODIR)/%.o: %.cpp
   $(CC) -c $(CFLAGS) -o $@ $<

make generates .o file names from .cpp file names it found in the current directory.

share|improve this answer
Thanks for the example. :) – Noufal Ibrahim Apr 11 '11 at 6:44
But doesn't that rule exist already? – Prof. Falken Apr 11 '11 at 6:45
@Amigable Clark Kant: nope, you define it yourself – weekens Apr 11 '11 at 6:48
It seems to work perfectly fine without that rule, so I guess there is an implicit rule already. – Prof. Falken Apr 11 '11 at 7:16
Ok, maybe I'm wrong... – weekens Apr 12 '11 at 9:33

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.