3
votes
3answers
57 views
In gnu make, can the prerequisites in a static pattern rule have have different suffixes.
Our make file compiles .c source files with a static pattern rule like this:
OBJECTS = foo.o bar.o baz.o
$(OBJECTS): %.o: %.c
$(CC) $< $(C_OPTIONS) -c -o $@
I need to ch …
3
votes
2answers
44 views
Wildcard targets in a Makefile
How can I compact the folllowing Makefile targets?
$(GRAPHDIR)/Complex.png: $(GRAPHDIR)/Complex.dot
dot $(GRAPHDIR)/Complex.dot -Tpng -o $(GRAPHDIR)/Complex.png
$(GRAPHDI …
0
votes
1answer
51 views
Re-execute target when specified as dependency to multiple rules
I have the following GNU makefile:
.PHONY a b c d
a: b c
b: d
c: d
d:
echo HI
I would like the target 'd' to be run twice -- since it is specified as a dependency by both b …
5
votes
3answers
91 views
GNU make’s -j option
Ever since I learned about -j I've used -j8 blithely. The other day I was compiling an atlas installation and the make failed. Eventually I tracked it down to things being made o …
0
votes
0answers
28 views
Make (Parallel Jobs) on Windows
What setup works for GNU make parallel jobs (-j) on Windows?
I have tried setting the shell to cmd.exe using MinGW make 3.81, this works in creating the multiple processes but mak …
1
vote
1answer
28 views
What does the load-average used by parallel make represent?
Using GNU make on Windows, what exactly does the load-average value represent?
For example:
make -j --load-average=2.5
What does the 2.5 mean?
1
vote
2answers
359 views
how to have make targets for separate debug and release build directories?
Hi all,
I am looking for suggestions to properly handle separate debug and release build subdirectories, in a recursive makefile system that uses the $(SUBDIRS) target as document …
0
votes
2answers
170 views
Flat object file directory structure output with GNU Make
I have a C++ small project using GNU Make. I'd like to be able to turn the following source files:
src/
a.cpp
b/
b.cpp
c/
c.cpp
into the following output structure …
0
votes
2answers
22 views
Win32 paths as targets/dependencies
Is it possible to have a GNU makefile with a target/dependent containing a win32 path name? I'm currently using the win32 3.81 version of GNU make, and it seems to have difficulti …
0
votes
2answers
101 views
Multiple rules specify the same phony dependent, dependent only executes once
I have a question regarding the GNU makefile example below:
.PHONY: $(subdirs) build x y
subdirs = a b c
build: x y
x: target=prepare
x: $(subdirs)
y: target=build
y: $(subdi …
1
vote
3answers
56 views
Is it possible to implement a `trap’ for GNU make
I'm wondering if there's a way to implement the similar functionality as you get in bash scripts using `trap', but for gmake, such that if the user presses CTRL-C, or if make itsel …
1
vote
6answers
542 views
How can I configure my makefile for debug and release builds?
I have the following makefile for my project, and I'd like to configure it for release and debug builds. In my code, I have lots of #ifdef DEBUG macros in place, so it's simply a m …
3
votes
4answers
305 views
GNU make with many target directories
I have to integrate the generation of many HTML files in an existing Makefile.
The problem is that the HTML files need to reside in many different directories.
My idea is to write …
2
votes
1answer
67 views
How to supress echos in makefile?
I have the following PHONY target in Makefile
install:
echo /usr/bin/shelldecrypt must be writable
cp shelldecrypt /usr/bin
When I run the target it displays th …
3
votes
1answer
171 views
Automatic variables in the tests of conditionals : GNU Make
Hi,
I am kind of stuck here. We have two makefiles (A requirement that I can't change)
defs.mk : It contains the source file names & their extra compile flags (apart from th …
