0
votes
0answers
19 views

Need help understanding target groups for clearmake, makefiles, and parallel builds

I am trying to use clearmake with a -J N flag, but when it gets to building, I get this warning: Rules with multiple targets may not build correctly in parallel, unless they are declared as a 'target ...
0
votes
0answers
18 views

Make : no rule to make target with Coin-cbc for or-tools

I try to install or-tools. So I execute the following commands (I'm on Fedora) : sudo yum install subversion bison flex python-setuptools python-dev autoconf libtool zlib-devel It said that ...
0
votes
1answer
43 views

GNU Make: different dependencies of several binaries in the same target?

First of all, I'm not familiar with GNU Make, so if I state some concept ridiculously wrong, please correct them instead of teasing me, thanks. I want to have a default target that builds several ...
0
votes
1answer
87 views

make: No rule to make target 'external/intel-boot-tools/boot.mk'

I'm trying to make an Android ROM for my Razr I phone (x86-atom). Everything works, but when I run make it shows this error: make: *** No rule to make target 'external/intel-boot-tools/boot.mk'. ...
2
votes
1answer
63 views

Why doesn't make build an object file on the first run?

I have this Makefile: CFLAGS := $(CFLAGS) -std=c99 shell: main.o shellparser.o shellscanner.o $(CC) -o shell main.o shellparser.o shellscanner.o main.o: main.c shellparser.h shellscanner.h ...
2
votes
1answer
86 views

Proper method for wildcard targets in GNU Make

I am trying to write a Makefile with my source and object files separated and I can't seem to figure out the proper way to accomplish this. I have two methods that work but I'm hoping someone can ...
0
votes
1answer
109 views

Confused About UNIX Makefile $< and $?

So I'm learning about makefiles, however the $< and $? are really confusing me. Speaking of which, $@ also confuses me. What if there are multiple targets, then what does $@ refer to, the first ...
0
votes
0answers
49 views

How do make targets work in eclipse?

I think I understand pretty well how make works and what a target is in a Makefile, but in eclipse there is an entire view dedicated to make targets. I can create make targets, assign them any shell ...
4
votes
1answer
137 views

Why .PHONY:target and not target:.PHONY?

I still don't understand why "phony" rules in Makefiles have ".PHONY" as their target. It would be much more logical as a prerequisite. Do I have to elaborate on this? If A depends on B and B is ...
0
votes
5answers
105 views

What the role of a target in a Makefile?

I was under an impression that the left hand side of the colon : represent target i.e. the executable file, and the right hand side represents 'dependencies', i.e. the files needed to produce the said ...
2
votes
1answer
674 views

Makefile wildcard (static rule?) with phony

I'm just starting to really grok the inner workings of make. Yet I do not understand why the following doesn't work: test%: test%.foo @echo $@ @echo $< all: test1 test2 .PHONY: all ...
1
vote
2answers
453 views

make doesn't find rules to make target (newbie on manual makefile generation)

I have the following makefile that I tried to construct out of a tutorial. Then I (thought) i added the necessary sources in order to fit it for my code.. but it doesn't find the target. I think It ...
3
votes
3answers
238 views

How do you implement a Makefile that remembers the last build target?

Let's say you have a Makefile with two pseudo-targets, 'all' and 'debug'. The 'debug' target is meant to build the same project as 'all', except with some different compile switches (like -ggdb, for ...
0
votes
3answers
183 views

Makefile: can (GNU) make internally report whether a target needs updating?

This is my problem: I can build a binary in one of two ways and each has checks that can be done on them (under their own make targets); I would like a check target to run whichever target is ...
1
vote
2answers
218 views

How make decides to build target

One sign is that target does not exist, understand this. Another is by comparing modification timestamp of target and prerequisites. How it works in more details? What is the logic of comparing ...
1
vote
2answers
3k views

Force Makefile to execute script before building targets

I am using Makefiles. However, there is a command (zsh script) I want executed before any targets is executed. How do I do this? Thanks!
4
votes
2answers
5k views

make wildcard subdirectory targets

I have a "lib" directory in my applications main directory, which contains an arbitrary number of subdirectories, each having its own Makefile. I would like to have a single Makefile in the main ...