2
votes
2answers
50 views
Using extern in C doesn’t work as expected
Hi, I have created two files:
tunables.h
#ifndef TUNABLES_H
#define TUNABLES_H
void tunables_load_conservative();
void tunables_load_aggressive();
extern int timer_x;
#endif /* …
1
vote
2answers
20 views
How to make dependency in makefile so that target is built when bazaar revision changes?
I have a script that is designed to generate a config.h in the source tree, to be used by the code at compile-time. Information included in this includes the bazaar revision number …
1
vote
3answers
37 views
Using make to generate bison grammar
In a project that uses make and bison, I'm having difficulty specifying that the compiled grammar grammar.tab.c depends on the grammar input grammar.y, that each object file depend …
2
votes
3answers
55 views
Parallelization of recursive jobs in GNU make
Hi,
I am looking for an elegant way for the parallelization of jobs in GNU make. Here is a sample of what I did so far. Make processes the directories dir-1, dir-2 and dir-3 in a …
1
vote
9answers
120 views
Invoking makefile in the project root directory from subdirectory Emacs - C++
I have a makefile in the project root directory. If I am editing a file in a subdirectory, how do I invoke make from EMACS? M-x compile make will not work as it looks for the makef …
2
votes
4answers
58 views
In what order prerequisites will be made by the GNU make?
Assuming we have the rule:
a: b c d e
and b, c, d and e are independent of each other.
Is the order of making b, c, d, e defined? It seems that generally they will be made in o …
1
vote
1answer
11 views
Windows Makefile and Setting Environment Variable
My Product is built using cygwin on Windows.
but Windows Tools does not understand cygwin path like /home/lib/
How do I set those variables during runtime , like can I set environm …
0
votes
3answers
30 views
Override target in makefile to add more commands?
At work we use a common makefile that other makefiles include (via the include statement) and it has a generic "clean" target that kills some common files. I want to add on to tha …
3
votes
2answers
30 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 …
1
vote
3answers
19 views
How do I pause to inspect results of sh commands run by a Makefile?
So, I have a Makefile which runs different commands of how to build S/W. I execute make from within a MSYS / MinGW enviroment.
I found for example, the sleep <seconds> comma …
2
votes
5answers
81 views
Pre-build step in makefile
Hi!
How can I run a script, which must execute before all other makefile commands? And it will be nice (but not mandatory) to the script is not executed if there is nothing to bui …
1
vote
2answers
54 views
running grep from within GNU make
I need to find the text 'ifeq ($(Param1)' using grep. I try to assign search result to make variable. The problem is that single quotes don't escape text in make so when I try:
Gr …
1
vote
3answers
66 views
Multicore make in parallel rather than “threaded” execution?
I have a Makefile to execute a test suite that looks roughly like this:
%.diff.png: %.test.png
echo '$*: Comparing with good PNG.'
%.test.png: %.pdf
echo '$*: Converting …
3
votes
3answers
51 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 …
0
votes
1answer
99 views
How should a very simple Makefile look like for Cuda compiling under linux
Hi,
I want to compile a very basic hello world level Cuda program under Linux. I have three files:
the kernel: helloWorld.cu
main method: helloWorld.cpp
common header: helloWo …
