Tagged Questions
0
votes
1answer
20 views
Automatic dependency list not generated in a different setting of directory structure
I have the following directory structure:
root-----Makefile
|-----src #all source files here.
|-----obj #all object files here.
|-----bin #the final target.
The contents of Makefile is ...
0
votes
1answer
18 views
Automatically generating dependency in make and including them in dependency list
Here this tutorial explains it quite beautifully and most of it works fine. The following is the final Makefile from the tutorial which assumes that you have a directory structure like the following:
...
-1
votes
1answer
38 views
How to handle the sub-make in GNU make errors?
I'm using sub-make in my Makefile(GNU). But whenever sub-make fails the main make continues to run successfully after that. I want my main Makefile to fail whenever my sub-make fails. How do I do ...
0
votes
2answers
26 views
GNU Makefile dependency in multi-job make
I have a c++ project under linux. I'm using GNU make and GCC
I have following rules:
all: ...
version:
config:
rm -f config.h
@$(MAKE) --no-print-directory config.h
config.h:
# ..... create ...
1
vote
3answers
77 views
Makefile C++11 error
I'm learning about makefiles. What I tried is writing my own one after a little reading. The problem is, I always get errors connected with c++11 standard, even though I put the compiler flag needed ...
0
votes
1answer
16 views
No rule to make target in Maefile
I'm learning to write makefiles. I made my own simple one just to try and test, but every time I run make, i get:
make: *** No rule to make target `/%.cpp', needed by `obj'. Stop.
I googled. I'm ...
1
vote
1answer
19 views
What does the '-I.' option cause in a g++ call?
In a makefile the compiler variables CXXFLAGS and CPPFLAGS are each set like this:
CXXFLAGS = -I. $(shell something)
Whereas the -I directory option is used to include another standard lib ...
0
votes
2answers
31 views
Extra build/missing object files with header-tracking Makefile
I have written a (GNU make) Makefile designed to perform automatic dependency tracking in header includes. Everything works great except that upon typing make a second time, the entire code base ...
0
votes
1answer
27 views
Argh, makefile won't pick up dependencies correctly
My simple little makefile is exhibiting behavior which I'm not able to understand. If I touch any source file except Dictionary.cpp then no targets are built, and if I touch Dictionary.cpp then it ...
0
votes
3answers
27 views
Makefile: rule with the same name as subdirectory ignored
This is my makefile:
all: first second
second:
@echo "==Building second=="
first:
@echo "==Building first=="
If there is a directory named second, the rule with the same name will be ...
0
votes
1answer
47 views
Why isn't make detecting changes in header dependencies
I'm not sure what I'm doing wrong here. I'm trying to get make to figure out what dependencies my project has for, not only source files, but non-system included header files. I've many resources ...
0
votes
2answers
40 views
How to reduce exe size produced with CodeLite mingw 4.7.1
I'm new to CodeLite
everytime I press F7 to compile the project, it produce a huge exe
#include <iostream>
int main(int argc, char *argv[]){
return 0;
}
short code but 900KB
I've ...
1
vote
1answer
38 views
(GNU) Make: How does one set up a basic system?
I would like to try to establish a very small system of Makefiles. I have the following set up, but something is not quite right (this has been pieced together from reading a few SO posts about the ...
0
votes
1answer
121 views
Execute complex shell command from makefile
I have the following command line that works from the Linux command prompt:
vi /tmp/test.txt -s <( echo ":1 s/^\/\/ VERSION: .*$/\/\/VERSION: $(date)/g" )
It creates a temporary file (using ...
0
votes
1answer
19 views
Using make to pack files in directory
In existing project I am packing files using make.
I am trying to rewrite make, so it does not have to clear everything on every my change. I have targets like this:
device1pack1.pack: ...
0
votes
2answers
37 views
Why does this makefile not work?
I'm new to Makefiles and I'm trying to write a simple one that would compile and link all applications listed in a variable like that:
APPLICATIONS = app1 app2 app3
All of them must have a source ...
0
votes
1answer
28 views
how to generate two .so file in a single android.mk file
I'd like to create two .so file within a single .mk file. But the following codes fails because there should not be a space in LOCAL_MODULE. So is there a way out?
LOCAL_PATH := $(call my-dir)
...
1
vote
2answers
93 views
Directory wildcard in Makefile pattern rule
I'm trying to create a Makefile that will compile terminfo files residing in a directory via tic. tic also copies the termcap files it creates automatically to a system- or user-specific destination ...
1
vote
1answer
37 views
How to make specific binary from specific object file?
Here is my makefile, i have object files in obj/ directory, and i need to compile them into binaries in bin/ folder, but somehow it doesn't work as i wanted it to work, any ideas?
SOURCES= $(wildcard ...
0
votes
4answers
42 views
new default acton for makefile
If I have a Makefile which references myprog.c, if I don't specify a rule for myprog.c, make will automatically do something like $(CC) myprog.c.
Can I re-specify that default behavior and add new ...
0
votes
2answers
31 views
why can't this makefile work?
I wrote the following makefile using automatic variables($@,$^) and pattern(%),but it can't work with gnu make:
TARGET = edit
SRCS = $(wildcard *.c)
OBJS = $(SRCS:%.c=%.o)
$(TARGET) : $(OBJS)
gcc ...
0
votes
3answers
84 views
GNU make use file as target in SUFFIXES
Makefile is using
.SUFFIXES: .ext1
.ext1:
echo bla bla
I have a configuration file path/to/abc.ext1 so make path/to/abc works fine.
I want make path/to/abc.ext1 to work as well. It would be ...
0
votes
2answers
27 views
Makefile: split input files for command options
My current project contains a makefile which has, among its rules (simplified without dependencies):
SOURCES : = "file1.txt file2.txt file3.txt" # and so on
assembled.txt:
myprog -I $(SOURCES)
...
1
vote
3answers
94 views
Makefile pattern rule for no extension?
I have a bunch of applications that are built with the same type of make rule:
apps = foo bar baz
all: $(apps)
foo: foo.o $(objects)
$(link)
bar: bar.o $(objects)
$(link)
baz: baz.o ...
0
votes
1answer
52 views
Makefile Substituting for loop variables to functions
I'm not sure what the best way to do this, and some pointers in this regard would be helpful
Code:
#Else where in different file and included in this makefile i have
LIBRARY_LIST := ...
0
votes
1answer
93 views
makefile: foreach “make -C” call
here is part of my makefile:
PATH := $(shell pwd)
EDIR := impl
EFFECTS := $(filter-out $(EDIR), $(shell find $(EDIR) -maxdepth 1 -type d))
ALLMAKES := $(patsubst %, $(PATH)/%, $(EFFECTS))
all:
...
0
votes
2answers
96 views
Makefile which can generate all object files in a specific path
Somewhere I am going wrong !!
I am trying to generate the object files in ../bin/
But the below code generates in corresponding source file directory.
Below the code, which I am running.
Modified ...
0
votes
1answer
91 views
makefile recursive -q mode Error 1
I am trying to run a recursive invocation of "question mode", and I get an error in a very unique scenario.
I am using MAKE 3.81, and this has been tested on two completely separate environments.
I ...
0
votes
1answer
80 views
How To Include Files From Multiple Directories In C on Linux?
gcc main.c -o main -I include
I am creating a small c application where my all source files are in src directory while all header files in include directory, also all common files are in ...
0
votes
1answer
35 views
GNU make and nmake: computed names with multiple values
GNU make manual describes usage of computed names as follows:
VAR1 := 5
VARX := VAR1
$(info $((VARX)))
Output: 5
How to use computed name with multiple values inside?
VAR1 := 5
VAR2 := 7
VARY := ...
0
votes
2answers
51 views
Complex command execution in Makefile
I have a query regarding the execution of a complex command in the makefile of the current system.
I am currently using shell command in the makefile to execute the command. However my command fails ...
0
votes
2answers
47 views
GNU make and hg: which file can be used to decide my target is outdated?
Assume a Mercurial repository foo. Furthermore assume a make job run from crontab that is supposed to update a bundle of everything from revision 0 to the tip whenever something changes within the ...
0
votes
1answer
163 views
How to write a makefile to generate object files and executable in different directory?
Now to proceed further I need to change the presentation of existing Makefile.
Presently I am using:
~/Linuz/src: 1.c, 2.c, 3.c ...
~/Linuz/inc: abc.h, xyz.h
and makefile is in: ...
2
votes
1answer
141 views
How to write a single makefile, c files are in src and h files are in inc folder?
I am trying to write a makefile which should pick the sources from src/ and headers from inc/
~/Linuz/src: 1.c, 2.c, 3.c ...
~/Linuz/inc: abc.h, dyz.h
Please help me to create a makefile which ...
0
votes
1answer
38 views
MakeFile Set Variable at Runtime
I have a makefile as follows.. At the first line that says windows.. Then on that same line, I try to set the variable to windows and jmp to $(WinDIR)/$(WinOUT)
How can I do that?
windows: ...
0
votes
2answers
51 views
Defining variables depending on the target
I've got a Makefile that looks like:
gator: LIB=-lm
gatorgpu : GPU=-DG
....
STATIC=
ifdef STATIC
$(info CPU static)
endif
But I would like to have something like:
gator: LIB=-lm
gatorgpu : ...
0
votes
1answer
20 views
How to forward command line params to the “collateral” make?
I have a makefile which looks roughly like this
debug:
make -C build-debug
release:
make -C build-release
Now, I run "main" make
make -j4 debug
How do I forward -j4 to the collateral ...
0
votes
1answer
43 views
How to keep an extra space from breaking this Makefile?
I am accustomed to GNU make ignoring extra whitespace within variables, so I was surprised by the following.
## Makefile ##
PKGS = FOO BAR
FOO_DIR = foo
BAR_DIR = bar
# ^-------- Extra ...
0
votes
1answer
61 views
GNU make: Generate rules for extracting tarballs
I've got a Makefile that extracts a series of tarballs. Right now the rules are written like:
dirname:
tar zxvf file.tar.gz
and other targets that depend on the expanded tarball reference ...
0
votes
1answer
86 views
addprefix command not recognized in makefile using nmake.exe windows
all: prd.exe
CC=cl
CFLAGS=-O2 -I../src -I. /W4
LDFLAGS = /Zi
LIBSRC = $(addprefix ../lib/, \
open.c malloc.c \
) \
$(addprefix ../src/, \
main.c \
) \
helper.c
...
0
votes
1answer
120 views
make error: “make[1]: *** [directories] Error 1”
When I try to run "make all" on a makefile with some complexity I get this errors:
C:\BITCLOUD\BitCloud_PS_SAM3S_EK_1_10_0\BitCloud_PS_SAM3S_EK_1_10_0\Applications\ZAppSi\Dem o\SEDevice>make all
...
0
votes
2answers
61 views
Stop make echoing directory it enters / exits
I have a Makefile that traverses a list of directories, which works fine, however i want to not get the Entering/Leaving info message like below:
make[1]: Leaving directory `/home/zzz/aaa/bbb/ccc'
...
0
votes
2answers
51 views
make force target before prequisite
I know this has been asked before, but please bear with me. run_test is the name of the file I would like to make. I prefer invoking as 'make run_test'. I want the prereq's makefile to be called each ...
0
votes
2answers
108 views
make implicit rule with force vs .phony
Can someone shed light on the difference here:
$(tsdir)/proj has prerequisites $(tsdir)/proja and $(tsdir)/projb. I want proja's and projb's makefile to be called everytime I have to build proja. If ...
1
vote
1answer
100 views
Makefile Dynamic Rules w/ No GNU-make Pattern
I have a set of .cpp files that I want to compile. These .cpp files are in a hierarchical directory structure. I want the corresponding .o files to all end up in one build folder.
Here's how I get ...
0
votes
2answers
82 views
Nested loops in makefile, compatible with “-j n”
In bobbogo's answer to the Stack Overflow question How to write loop in makefile?, it is shown how to write the equivalent of the following pseudocode in a makefile:
For i in 1, ..., n:
Add the ...
0
votes
1answer
41 views
GNU Make with multiple options for a target
I am curious if Make has a method to support multiple (independent) ways of creating the same target. For an example, say I have two source directories: svg_src (containing SVG images), and agr_src ...
3
votes
1answer
1k views
GNU Make “Abort trap: 6” after gcc call however call is valid when executed alone
I am using GNU Make to build a C/C++ project that many people will use. The makefile attempts to be general because there are many optional files in this project and each user selects those files ...
1
vote
1answer
51 views
moc Makefile rules
Everywhere I search I keep seeing this helpful rule
moc_%.cpp: %.h
$(MOC) $(DEFINES) $(INCLUDES) $< -o $@
It doesn't work. The Makefile goes
MOC:= /path/to/moc
.PHONY clean:
rm ...
0
votes
2answers
65 views
Calling make from within a makefile
I have a Makefile which works perfectly called from a new shell, i.e.:
make -C /dir/
However, if I call this Makefile from another Makefile, it fails due to some complicated dependency issues. Make ...


