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.

I am having trouble with my makefile, i have been reading somme tutoriels on how to make a more re-usable makefile but i am facing this error, and i have been searching for a while now, especially on the GNU make manual and here.

Here is my makefile :

SRC_DIR=./src
BUILD_DIR=./build
OBJS= $(BUILD_DIR)/main.o $(BUILD_DIR)/hamming.o

$(BUILD_DIR)/%.o: $(SRC_DIR)/%.c $(SRC_DIR)/%.h
    $(CC) -c $< $(CFLAGS) -o $@

$(BUILD_DIR)/main: $(OBJS)
    $(CC) -o $@ $^ $(CFLAGS)

I am having the error :

make: No rule to make target build/main.o', needed bybuild/main'. Stop.

It seems to me that the objects in the variable OBJS are not associated with the %.o pattern rule, but i don't know why.

In my working directory there is : my makefile and the two directories 'src' and 'build'.

Thank you.

share|improve this question

2 Answers

up vote 1 down vote accepted

I'll go out on a limb and guess that there is no src/main.h. If that's the case, you could fix things this way:

$(BUILD_DIR)/hamming.o: $(BUILD_DIR)/%.o : $(SRC_DIR)/%.h

$(BUILD_DIR)/%.o: $(SRC_DIR)/%.c
    $(CC) -c $< $(CFLAGS) -o $@

EDIT:
Now I'm puzzled. Please try this (it is crude, but if it works we can refine it):

SRC_DIR=./src
BUILD_DIR=./build
OBJS= $(BUILD_DIR)/main.o $(BUILD_DIR)/hamming.o

$(BUILD_DIR)/%.o: $(SRC_DIR)/%.c $(SRC_DIR)/%.h
    $(CC) -c $< $(CFLAGS) -o $@

$(BUILD_DIR)/main.o: $(SRC_DIR)/main.c
    $(CC) -c $< $(CFLAGS) -o $@

$(BUILD_DIR)/main: $(OBJS)
    $(CC) -o $@ $^ $(CFLAGS)
share|improve this answer
No there is no main.h. In fact the error indicates that there is no rule for "main.o", so i tried to put $(BUILD_DIR)/main.o: $(BUILD_DIR)/%.o but it does not make it. Thank you anyway. – Laurent Aug 24 '11 at 15:50
Of course $(BUILD_DIR)/main.o: $(BUILD_DIR)/%.o won't work. Try what I posted. – Beta Aug 24 '11 at 15:57
The error message is probably confusing you: the implicit rule may have been matched and subsequently rejected (at step 5 in gnu.org/software/make/manual/make.html#Implicit-Rule-Search); you should be able to determine this by looking at the output of make -d. – reinierpost Aug 24 '11 at 16:52
I got this doing "make-d" : pastebin.com/T5Li5rzs, i really don't know how to analyze this ! – Laurent Aug 24 '11 at 17:02
1  
Now it works perfectly. So then i tried to do OBJS= $(BUILD_DIR)/hamming.o $(BUILD_DIR)/main.o so that the file hamming.o is done first, the hamming.o file is compiled but then i got the same error message with the main.o file. I guess that's because there is indeed no main.h, the dependencies are not satisfied ( $(BUILD_DIR)/%.o: $(SRC_DIR)/%.c $(SRC_DIR)/%.h ) and so main.o is not made. So i created a main.h file, and now my original makefile works perfectly ! @Beta : You were exactly right, i guess, by pointing out that there were no src/main.h file, thank you ! – Laurent Aug 24 '11 at 18:03
show 4 more comments

Here is a little documentation I put together for NMake a while back I hope it helps. Are you sure there are only tabs before the commands. You can't have spaces that is the number one error I have seen in the past.

share|improve this answer
Thank you for answering. I just checked and there is only one tab before every commands. – Laurent Aug 24 '11 at 14:43

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.