This tag is for questions about `gmake`, the GNU version of the `make` utility to maintain and update programs.
1
vote
1answer
25 views
Cross compiling with automake
I'm trying to cross compile a project and a library it depends on for use on an embedded system. Both the application and the dependency use automake. I was able to compile the library without much ...
0
votes
1answer
14 views
gmake ifeq comparison does not give desired result
I have a somewhat complex makefile that I want to change and I don't know much about make.
BUILD_TYPE = SERVER
BAS_CSRC = a.c \
b.c \
c.c
What I want to do is conditionally ...
-1
votes
1answer
33 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
25 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
19 views
How to print out a variable in makefile
In my makefile, I have a variable 'NDK_PROJECT_PATH', my question is how can I print it out when it compiles?
I read Make file echo displaying "$PATH" string and I tried:
@echo ...
1
vote
3answers
75 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 ...
0
votes
1answer
14 views
Late variable expansion in gnu Makfile
I split a big file using the split command in a Makefile recipe.
trails : $(OBJ)
sort -m $? | accumulate.py --threshold 30 | split -C 10MB -d -a 3 - trail.
I then rename the resulting files to ...
1
vote
2answers
50 views
Getting Started with Makefile for C++(CMake or GNUMake?)
I have got my first project for this semester and I have been asked to submit it with a makefile. The literature available on the internet is a bit overwhelming and combined with my laziness, I came ...
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
28 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
26 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
33 views
Make and last modification times of directories on Linux
Consider the following makefile:
foo :
mkdir foo
foo/a.out : foo a.in
cp a.in foo/a.out
foo/b.out : foo b.in
cp b.in foo/b.out
and the following interaction with it, starting from a ...
0
votes
3answers
26 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
41 views
How to get exit status of a shell command used in GNU Makefile?
I have a makefile rule in while I am executing a linux tool. I need to check the exit status of the tool command, and if that command fails the make has to be aborted.
I tried checking with $?, $$? ...
0
votes
1answer
20 views
gmake change the stack size limit
If my current environment,
$ ulimit -s
10240
But if I run a process through gmake, the stack size is unlimited. For instance (the ;: is to make gmake use the shell to execute the command, ...
0
votes
1answer
45 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
43 views
automake-ing in bison which works fine with handwritten makefile
Friends,
I am trying to create Makefile via gnu-autotools for a flex+bison+C code (toy code, you ma say). The Handwritten Makefile works fine
CC=gcc #-g -Wall
FLEX=flex
BISON=bison
LIBS=lfl
...
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 ...
0
votes
0answers
7 views
Force the detected OS in configure
configure.py scripts allow you to force the detected os with commands such as --os=linux.
Is there any such functionality for GNU configure?
0
votes
2answers
67 views
GNU Make: customize library search path in Makefile
Currently to include a custom static library in my project repo I need to tell the compiler the full path of the library, like
$(CXX) $(CXXFLAGS) -o $@ $^ ../lib/libnt.a $(LDFLAGS)
but I actually ...
1
vote
1answer
51 views
Linking protobuf library using GNU makefile on Linux
I know that the protobuf library must be linked using GNU makefile flags -lprotobuf -lpthread or maybe -l:libprotobuf.so -lpthread; however when I make with -Wl,--verbose I see the following output:
...
2
votes
1answer
55 views
Is there a Cygwin version of GNU make?
Android's NDK requires both Cygwin and GNU Make. Since I already have the latest & greatest Cygwin installed, I thought that GNU Make must have already been included in it, as Cygwin is pretty ...
1
vote
1answer
37 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 ...
-1
votes
0answers
37 views
Install/Downgrade Make 3.81 to 3.80 [closed]
To compile a development package I need to use Make 3.80 however the only make I could install was make 3.81. How can I install or downgrade to make 3.80. The box is running ubuntu server 12.04.
...
3
votes
3answers
61 views
get a default value when variable is unset
(edit: question more accurate based on @Michael feedback)
In bash, I often use parameter expansion: the following commands print "default value" when $VARNAME is unset, otherwise it prints the ...
0
votes
2answers
59 views
GNU Make Error 126, C:\Program is a directory
GNU make gives me a strange error message, which I do not understand.
gao@L8470-130213 ~
$ make
echo Test
C:\Program: C:\Program: is a directory
make: *** [test] Error 126
This is what I thought of ...
0
votes
2answers
57 views
Gnu make : using content of file as recipe
Consider having a makefile, which can generate some files using generating lines listed in a file. For example file 001 using first line, 002 using second line, etc.
This file can be changed (it has ...
0
votes
1answer
109 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
25 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
91 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 ...
0
votes
1answer
29 views
piping with make dosen't work
I'm quite new to make, and I tried to create a phony target to print targets:
.PHONY: help
help:
$(MAKE) --print-data-base --question | \
$(AWK) '/^[^.%][-A-Za-z0-9_]*:/ { print ...
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
0answers
32 views
Build a UNIX make project in Windows
I have a C project with a Makefile, I want to build it on windows. I downloaded GNU Make installed. And I have VS2010. The make file has UNIX commands like cc, nvcc and g++. I have to replace them ...
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
1answer
37 views
What is the -lrt flag in gnu-make?
In a later stage of the gnu-make process gmake sent a command similar to:
gcc -static foo.so.0 bar.o bizz.o buzz.o -pthreads -lrt
In that command, what dos the -lrt mean?
0
votes
3answers
83 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)
...
0
votes
2answers
72 views
makefile rule to build multiple targets without intermediate file
I am stumped coming up with a makefile rule to have several executables where each depends on its respective source file. There is a library common to all and each program has a single source file: ...
1
vote
1answer
29 views
How to know what is GNU Make doing in particular moment?
I'm running big GNU Make file with -j flag. At one point Make process overflows all RAM and falls with "segmentation fault". Without -j flag the process finish sucessufly. How to know what is GNU Make ...
1
vote
3answers
80 views
Difference Between 'gmake' and 'gmake clean'
I am currently working on a project on a student job and writing some code. Whenever I want to compile my file, my supervisor told me to first do gmake clean and then do gmake. Otherwise,some errors ...
1
vote
3answers
91 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
59 views
patsubst not working in GNU make?
I am using GNU make on Windows 8 to learn about makefiles. The tutorial I am referring is written for Linux, so I am correcting the makefile given as far as I know, e.g. replacing '/' by '\' etc.
My ...
0
votes
1answer
26 views
make does not realize that a relative path name dependency is the same as an absolute pathname target
The following is a simplified makefile for a problem I'm having:
all: /tmp/makey/../filey
@echo All done
/tmp/filey:
@echo Filey
When I run make it says:
make-3.79.1-p7: * No rule to make ...
0
votes
1answer
50 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 := ...
4
votes
3answers
329 views
error: stdio.h: No such file or directory error during make
I'm trying to compile the following program in Ubuntu. But I keep getting the error: "stdio.h: No such file or directory" error.
#include <stdio.h>
int main(void)
{
printf("Hello world");
}
...
0
votes
1answer
82 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:
...




