Tagged Questions
The gmake tag has no wiki summary.
18
votes
3answers
8k views
how to write cd command in makefile
for example I have something like this in my makefile
all:
cd some_directory
but when I type make I saw only 'cd some_directory' like in echo command
11
votes
2answers
4k views
Functions in Makefile
I am writing a Makefile with a lot of repetitive stuff, e.g.
debug_ifort_Linux:
if [ $(UNAME) = Linux ]; then \
$(MAKE) FC=ifort FFLAGS=$(difort) ...
7
votes
5answers
690 views
Any interesting uses of Makefiles to share?
"make" is not only useful for building your programming project, but it seems to be under-used in other areas.
For example, many shell scripts can be rewritten as Makefiles to allow independent parts ...
4
votes
4answers
3k views
What is the difference between gmake and make?
I am trying to understand the difference between 'gmake' and 'make'?
On my linux box they are identical:
% gmake --version
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
This is ...
4
votes
3answers
11k views
How to check if a file exists in a makefile
I have a makefile template to compile a single DLL (for a plugin system).
The makefile of the user looks like this:
EXTRA_SRCS=file1 file2
include makefile.in
In the makefile.in I have:
...
3
votes
2answers
3k views
gmake compile all files in a directory
we have some C++ code that we need to create a make file in. Each .h and .C pair create an object and then some objects are linked together to form a executable. Pretty standard stuff.
This non-gnu ...
3
votes
4answers
158 views
2
votes
3answers
58 views
gmake overriding compiler directory
Is there any way to specify gmake an alternate compiler directory. ie: i have multiple compilers installed and trying to use alternate gcc while compilation.
like if i specify it uses the new ...
2
votes
2answers
294 views
gmake get list of object files from multiple directories
I dont know much makefile stuff I've been tending to learn bits as required.
The biggest failing of my makefiles is that I have been listing all the files manually, while this hasn't been a problem ...
2
votes
2answers
147 views
make deleting dependency files
I'm not sure if it's gmake or gcc that I don't understand here.
I'm using the -MM and -MD options to generate dependency rules for the Unit Testing framework I'm using. Specifically:
...
2
votes
2answers
210 views
make install only if file changed
When writing a well crafted Makefile, one that keeps proper dependencies, and do only the minimum needed if a file has been changed, it seem that the install: target is often overlooked. More often ...
2
votes
1answer
557 views
Rectifying autogenerated dependencies (from gcc) in make
I have the following makefile (fragment)
SRC_DIR = src
OBJ_DIR = obj
DEP_DIR = dep
BIN_DIR = .
SRC_FILES := $(wildcard $(SRC_DIR)/*.cpp)
OBJ_FILES := $(patsubst ...
2
votes
2answers
3k views
Makefile calling another makefile
I'm getting some unexpected results calling one makefile from another. I have two makefiles, one called /path/to/project/makefile and one called /path/to/project/gtest-1.4.0/make/Makefile. I'm ...
2
votes
1answer
1k views
Is it possible to “unset” an environment variable in a Makefile?
I'm using GNU make, and including a 3rd party library in a project that has a build system that goes berserk if CFLAGS is defined in the environment when it is called. I like to have CFLAGS defined ...
2
votes
2answers
445 views
Gnu Make and z/OS USS make
1) We have a need for Makefiles to build C++ on both z/OS USS and a Linux platform. Is it advisable to use gnu make on z/OS USS in order to keep our makefiles common ?
2) If the Makefiles are ...
2
votes
4answers
3k views
GCC build problem (#include_next limits.h)
When i try to
$ make depend -f gcc.mak
a middleware on my Ubuntu machine I get this
/usr/include/../include/limits.h:125:26: error: no include path in which to search for limits.h
This is the ...
1
vote
1answer
63 views
How to change default CFLAGS for MakeMaker
How do I get Perl MakeMaker to change the default value for CFLAGS that it inserts into Makefiles? Based on this post, I tried this:
export CFLAGS=...
then inside cpan, I confirmed it with
! ...
1
vote
1answer
58 views
Prerequisites in assorted directories
I have a variable with a list of prerequisites in varying directories, each specified by a relative path. For example:
HTML_FILES := ../foo1/bar1.html ../foo1/bar2.html ../foo2/bar3.html ...
1
vote
3answers
107 views
Convert gmake Makefile to make Makefile?
Does a utility exist to convert a GNU Makefile for gmake to a Makefile that can be used for make (FreeBSD-make)?
1
vote
1answer
103 views
Measure time spent in each target of a Makefile
Is there a way to echo the (system, user, real) time spent in each target of a Makefile recursively when I do make all?
I'd like to benchmark the compilation of a project in a more granular way than ...
1
vote
1answer
108 views
GNU Makefile equivalent of shell 'TRAP' command for concise identification of build failure on exit
Criteria: Makefile is a GNU Make Makefile - I'm not interested in makepp, qmake, cmake, etc. They're all nice (especially cmake), but this is for work and at work we use GNU Make. The optimal solution ...
1
vote
3answers
252 views
how to tell “gmake” to use another version of GCC? (Linux)
I have the usual gcc on my machine (at /usr/bin/gcc), and another one (newer) is linked when I setup the environment for a certain framework which I'm working on.
And I would like to compile with the ...
1
vote
6answers
172 views
Alternatives for gmake?
I have a c++ program file with two functions in it. If I change the first function alone, why should both of them have to be recompiled?
Is there any build system which recompiles the first one alone ...
1
vote
5answers
235 views
How do I shut up make when it doesn't need to do anything?
How I stop make from saying make: Nothing to be done for 'all'. or make: 'file' is up to date? I'd like my build to be silent when it's not doing anything - there are other places where echo is ...
1
vote
3answers
746 views
Conditional dependency with make/gmake
Is there a way to direct make/gmake to act upon conditional dependencies?
I have this rule in place:
$(OBJ_DIR)/%.o: $(SRC_DIR)/%.cpp
$(CPPC) -c $(FLAGS_DEV) $< -o $@
In the general case, ...
1
vote
2answers
506 views
GNU Make and wildcards - missing files
I have a Makefile with the following type of rule:
%.html:
./generate-images.py > $@
make $(patsubst %.png,%.gif,$(wildcard *.png))
The generate-images script writes not only the HTML ...
1
vote
2answers
167 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 & c. ...
1
vote
2answers
916 views
Bash completion for make with generic targets in a Makefile
I have a Makefile where most of my targets are created generically through a canned sequence. It seems that bash completion only suggests completions for normal targets, e.g.
target_name:
#$@
...
0
votes
0answers
24 views
Makefile error: multiple object model
I use a makefile which should work under Linux, Windows and Mac.
The problem occurs for Windows, for the other operating systems it works fine.
I get this error:
Makefile 39: error: multiple object ...
0
votes
1answer
37 views
building the same file for different targets with different options
I have one "helper" file included in two "main" files which are built into two executables with the same makefile. I have debug print statements in the helper file. I want the print statements to ...
0
votes
1answer
128 views
how to “gmake 32bit USE_JEMALLOC=yes” for redis work on FreeBSD 8.1 64 bit
I can't compile 2.4 redis 32bit on FreeBSD 64 bit. I've already done :
cd /usr/lib32
ftp ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/8.1-RELEASE/lib32/
prompt
mget *.*
quit
sh install.sh
csup -h ...
0
votes
3answers
116 views
Relink Makefile target when list of dependencies changes
A common problem I've seen with Makefiles is that executables (and libraries, for that matter) aren't necessarily relinked when the list of dependencies changes. For example:
SRCS=$(wildcard *.c)
...
0
votes
2answers
159 views
HOSTNAME set in environment but not visible to gmake
This has plagued me on and off for years. Can anyone explain why $(HOSTNAME) doesn't expand to the environment value HOSTNAME? Googling various combinations of "make", "hostname", "gmake", "not set" ...
0
votes
2answers
105 views
How to get g++ for Linux FC-14
I am trying to install some software using gmake (recommended by author) on a FC14 machine. gmake fails when trying to call /usr/bin/g++, and there is no g++ in /usr/bin.
I have the "various ...
0
votes
1answer
220 views
How to use 'gmake install' on Windows?
I downloaded a matlab code from on my Windows 7 64 bit, using R2010a
http://www.eecs.berkeley.edu/Research/Projects/CS/vision/grouping/segbench/code/segbench.tar.gz
It says
(2) Run 'gmake install' ...
0
votes
1answer
41 views
`make -n` starts a config.status
I start a make -n of big project (multiple directories; Makefile and configure created with autotools); I think that nothing can be changed by this make; but it starts a config.status --recheck and ...
0
votes
1answer
74 views
Is it possible uninstalling of a program installed with `make` or `gmake`?
Is it possible uninstalling of a program installed with make or gmake? If possible, how to do that?
0
votes
1answer
643 views
Problem with a loop inside makefile
I am trying to implement the logic to display the progress of the build in a makefile.
I can successfully print it for the target "simple" in the makefile cascaded herewith. However when it comes to ...
0
votes
2answers
83 views
Installing PostgreSQL on Non-Admin Mac User Account
Simple question here.
Quote from the PostgreSQL Getting Started guide:
PostgreSQL can be installed by any unprivileged user; no superuser (root) access is required.
Instructions on the ...
0
votes
2answers
907 views
Help with Makefile: No rule to make target
CC = g++
CFLAGS = -Wall
RM = /bin/rm -rf
BIN_DIR =
ifeq "$(DEBUG)" "1"
BIN_DIR = Debug
else
BIN_DIR = Release
endif
OBJS = \
$(BIN_DIR)/Unit.o
$(BIN_DIR)/%.o: src/%.c
@echo Building "$@"
...
0
votes
1answer
329 views
How do make dependency generation work for C? (Also..decode this sed/make statement!)
I have a make build system that I am trying to decipher that someone else wrote. I am getting an error when I run it on a redhat system, but not when I run it on my solaris system. The versions of ...
0
votes
1answer
476 views
How can I force make to exit if compiling one dependency fails?
I've posted the relevant bits of my makefile. When I run make all on this makefile, there's a compilation error when compiling debugosd.o. However, because make found a previously built debugosd.o, it ...
0
votes
1answer
237 views
debugging a makefile
I have a makefile which has statements like below:
TOPICS = dmic
SRV_MODE =
ifeq "$(SRV_FLAG)" "ON"
SRV_MODE = 2
endif
vpath d%_srv.h $(CNT_PATH)
USER_PRE_TARGETS := $(foreach ...
0
votes
2answers
92 views
GNU make: inverting sub-process success?
I've a make file for a scripted system, with a lot of tests which should pass. Each test is a separate call to the scripting application:
...
0
votes
2answers
273 views
recursive gmake question
I need to write a quick makefile for building all my projects. This is C++ code and I am using gmake.
Say I have a list of directories, I want to cd to each, issue gmake command and if it succeeds, ...
0
votes
2answers
114 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 difficulties with drive ...
0
votes
2answers
403 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: $(subdirs)
$(subdirs):
...