Tagged Questions
0
votes
2answers
32 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 ...
2
votes
2answers
74 views
Writing dependencies in makefile, with makefile
Based on some SO questions -- and some further reference found --, I'm trying to build a makefile able to:
find, given the directories in $(SRC), the .cpp files to be compiled;
compile the .cpp, ...
2
votes
2answers
134 views
Auto dependencies in makefile and project directory structure
I've been trying for a while to use auto dependencies in my makefile, but i struggle a lot to make it work, as i use a more complex structure for my project than just putting every files in a root ...
0
votes
2answers
47 views
How to remove dependency definitions from a Make target?
I'm working on a large project (~3x10^6 lines of code) that builds with nested Makefiles. I have a file (subdirs.mk) which adds some convenience rules for operating on all subdirectories (possibly in ...
3
votes
2answers
84 views
Questions about Makefile - what is “$+” & where are .c files/dependencies called here ?
I came across this Makefile (found it through an open source project called sendip)
I have two confusions regarding this file -
Where are .c files being specified as dependencies here? Although all ...
0
votes
1answer
93 views
Makefile with optional dependencies
I have some .c and .h files that are generated by a script based on one XML file and optionally another XML file.
From what I've read I should be able to use a wildcard, for example:
%Generated.c ...
0
votes
0answers
248 views
fatal error : asm/linkage.h: no such file or directory [duplicate]
When I launch a Makefile with the command make, I get:
fatal error: asm/linkage.h : no such file or directory.
What do I need to install to fix this problem?
0
votes
2answers
89 views
Makefile with multiple targets and automatic dependency generation using g++ -MMD
Another question on SO describes a wonderfully elegant makefile for a single target:
CXX = g++ # compiler
CXXFLAGS = -g -Wall -MMD # compiler flags
OBJECTS = x.o y.o z.o ...
1
vote
2answers
157 views
Makefile dependencies don't work for phony target
Here is a reduced version of my Makefile:
.PHONY: all
all: src/server.coffee
mkdir -p bin
./node_modules/.bin/coffee -c -o bin src/server.coffee
I want to run make and only have it recompile ...
0
votes
1answer
109 views
Confused About UNIX Makefile $< and $?
So I'm learning about makefiles, however the $< and $? are really confusing me. Speaking of which, $@ also confuses me.
What if there are multiple targets, then what does $@ refer to, the first ...
2
votes
2answers
275 views
GNU make: clean target depends on includes
I'm using gmake and gcc -MM to track header dependencies, following the manual. The mechanism relies on a makefile include directive to import the computed dependencies.
Because the .d files are ...
2
votes
2answers
92 views
Makefile isn't rebuilding dependencies?
Fair warning: I'm something of a newb at using makefiles, so this may be something obvious. What I'm trying to do is to use make to run a third-party code generation tool when and only when the ...
0
votes
1answer
57 views
How deep does make check for dependencies?
I have the install target depend on my all target, which then depends on prog, the name of the program that needs to be installed. The problem is, when I change prog.cpp, and run make install, it ...
3
votes
1answer
144 views
Is it possible to include a generated make-style (not cmake-style) dependencies file in cmake?
I'm working with Vala, which is compiled first to C then compiled from C as normal.
One feature of valac (the Vala compiler) is to generate a "fast-vapi" for a .vala file. A fast-vapi is essentially ...
2
votes
1answer
468 views
Using g++ with -MMD in makefile to automatically generate dependencies
I know the following makefile will have the pre-processor automatically generate dependencies (in .d files) and include them in the makefile (because my course notes say so), so that they do not have ...
0
votes
2answers
182 views
Automatic Dependency Generation
I was reading through Automatic Dependency Generation in the make manual and I can't figure out why this functionality is needed. The project that I am working on and I started writing from scratch is ...
0
votes
1answer
50 views
Makefile target is never satisfied
I feel like this is a fairly common problem, but I cannot find the answer in my specific situation anywhere. I have a target like so:
initfs.tar: $(INITFS_FILES)
rm -f ./initfs.tar
cd ...
0
votes
1answer
84 views
Sort filenames based on dependencies
I have a list of dependencies generated by a program in the makefile format i.e.
dependent_resource: dependency1 dependency2
However my final programm, which combines these resources actually ...
0
votes
3answers
867 views
Makefile depency issue
I'm trying to compile an example code where I added a new file under a new directory but I keep getting a dependency problem.
I have added a file "ipc.c" under "/interface".
I have added the source ...
0
votes
3answers
176 views
Correct way to handle linking in Makefiles?
I'm currently working on a project in which there are about 20 c source files and about 8 binary targets. We're finding the Makefile upkeep fairly difficult and error prone. The main issue is in ...
0
votes
1answer
1k views
Makefile execute phonytargets of a file only if file does not exists
is there any way i could only execute the phony dependency of a file,
if this file does not exists ?
if the file has no phony dependency it works and only executes the content
of this rule. but if i ...
1
vote
1answer
50 views
Proper makefile for open sourced application with additional libraries
I'm currently in the process of open sourcing a few different applications which I have written. One of the problems I'm running into is how I should handle the external dependencies which my ...
2
votes
0answers
197 views
Using cpanm with Module::Install instead of CPAN or CPANPLUS
I am experiencing some frustration right now with installing dependencies from CPAN (trying to write an installation script that works under local::lib). This may be overkill but my code for the ...
2
votes
1answer
94 views
Dealing with dependency poisoning in makefiles
I'm working on re-writing an old build that was originally "designed" (or not, as the case may be) to be recursive. To preface, there will come a day when we'll move to something more modern, ...
3
votes
4answers
1k views
Makefile (Auto-Dependency Generation)
just for quick terminology:
#basic makefile rule
target: dependencies
recepie
The Problem: I want to generate the dependencies automatically.
For example, I am hoping to turn this:
#one ...
2
votes
1answer
137 views
A tricky GNU make problem
Here's some pseudocode for what I want my makefile to do:
if (A doesn't exist) or (B is newer than A):
rm -rf A
create an empty A
parallel_for X in (a large set of files):
if (X is newer ...
0
votes
3answers
584 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)
...
1
vote
1answer
691 views
Using GCC dependency files causes Make to rebuild project completely every time
I've followed the instructions online to set up gcc (actually g++) to generate .d files for dependencies, and now my makefile looks something like this:
CPPFLAGS := ... -MMD -MP
...
OBJECTS := ...
0
votes
3answers
183 views
Removing middle dependency in Make
I have a makefile based build system that builds some libraries and dependencies and puts them inside a compressed archive.
I have a problem where removing a middle dependency in a dependency chain ...
2
votes
2answers
53 views
What Does This Script Do?
I'm reviewing the tutorial "Advanced Auto-Dependency Generation" and found a script with this:
%.P : %.c
....; [ -s $@ ] || rm -f $@
What does that part of the target do? I know I've seen this ...
1
vote
2answers
162 views
lib dependencies and their order
at times if we don't list libs in certain order inside a makefile, it fails.
The reason being - definition should come before its use.
How to determine the correct order?
2
votes
2answers
100 views
Make file dependency section, required to have x.h: y.h?
In the following (cut down) make file, the dependencies are at the bottom. This is part of an actual make file that i am writing. In the real case there is a header file dependent on another header.
...
0
votes
3answers
4k views
Makefile with Jar and Package Dependencies
I have been trying all day to get this thing to work. Basically I need to create a makefile to build my project from its sources. I know a little about Linux but not much and I am a complete makefile ...
1
vote
1answer
1k views
Makefile - how to fix libc dependency?
I want to statically link Tk into my code. I am running into trouble due to dependencies. The modification I made to my Makefile is:
TK_LIBS_64 = \
-L/usr/X11R6/lib64 \
-lX11 \
-lXss \
...
0
votes
3answers
433 views
C++ includes and Makefiles
I have a two fold question about working with C++ headers and makefiles. I know that I have all the parts, I am just not sure how to put them together.
I have the following files:
main.cpp
Point.cpp
...
0
votes
2answers
462 views
Makefile: need to do a target before including another makefile
Part of my Makefile:
CPUDEPS=./mydeps.cpu
(...)
deps: $(CPUDEPS)
$(CPUDEPS): $(CCFILES)
@echo [DEPS] CPU
$(CMDECHO)makedepend -Y -s'# CPU sources dependencies generated with "make deps"' \
...
0
votes
3answers
3k views
Makefile: order of dependency evaluation
Assume a target foo.tar, that depends on a list of files foo.files, e.g.
FOO_FILES := $(shell cat foo.files)
foo.tar: foo.files $(FOO_FILES)
tar -cf foo $(FOO_FILES)
Now suppose that foo.files ...
1
vote
2answers
1k views
Makefile: dependencies on directory content when creating a tar file
In my battle against .PHONY targets I re-wrote:
# Makefile v0
tar:
tar -cf tarfile.tar dir
.PHONY: tar
to be:
# Makefile v1
tar: tarfile.tar
tarfile.tar: $(shell find dir)
tar -cf $@ ...
2
votes
2answers
231 views
Makefile that can determine using gcc which headers are missing?
I have a simple library that generates headers for me and I wish to chain this together in a Makefile.
If a cpp file includes a header file that doesn't exist, it should generate it from a matching ...
1
vote
5answers
2k views
Easy makefiles for gcc/g++
My projects almst always consist of:
Pairs of Foo.h and Foo.cpp
Some extra headers util.h etc.
What is the simplest way to write a makefile that
Runs
$CC -c foo.cpp
for each .cpp file, ...
4
votes
4answers
2k views
Makefile circular dependency
Here is my Makefile:
.PHONY: all homework1
CFLAGS= -g -O0 -Wall -Werror -Wno-unused-function
LDFLAGS= -lm
all : homework1
homework1 : program.tab.o program.lex.o
%.o : %.c
gcc -o$@ -c $(CFLAGS) ...
1
vote
0answers
349 views
Automatic dependency tracking with NMAKE
Is possible to detect automatically source dependency in a NMake makefile using VS 2005 compiler (as actually possible with GNU make and GCC compiler)?
Look at the '-M' option of GCC. Including the ...
0
votes
1answer
883 views
Makefile dependencies with regular expression
I have a list of RPM file names (like "package-1.0") that will be the dependencies of a make target, but some of them have the architecture x86_64 and others have i386. what do I do to match them? I ...
1
vote
1answer
678 views
Dynamic targets in Makefiles
I'm trying to create a Makefile that has a target per src/ subfolder so that it creates a static lib.
I am currently trying this:
%.o: %.cpp
$(CXX) $(CXXFLAGS) $(INCLUDE) -c -o $@ $<
lib%.a: ...
1
vote
1answer
423 views
Makefile target depend on file from environment variable
if I run make like this:
make VAR=dir
is there a way to add the location pointed by the VAR variable as a target dependency? actually, I need to define a file inside that directory as a dependency.
...
3
votes
2answers
411 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:
...
1
vote
3answers
2k views
Makefile updated library dependency
I have a large makefile which builds several libraries, installs them, and then keeps on building objects which link against those installed libraries. My trouble is that I want to use "-lfoo -lbar" ...
0
votes
1answer
173 views
what is cairo required by GTK 2.9 to compile (on Lucid Lynx)?
I have been trying to run configure to prepare the make file for GTK 2,9 on a fresh Linux box (running Ubuntu 10.04 Lucid Lynx).
it complained about some dependencies, including:
glib-2.0
atk ...
1
vote
1answer
843 views
Skip makefile dependency generation for certain targets (e.g. `clean`)
I have several C and C++ projects that all follow a basic structure I've been using for a while now. My source files go in src/*.c, intermediate files in obj/*.[do], and the actual executable in the ...
2
votes
3answers
892 views
Makefile automatic link dependency?
It's easy to let program figure out the dependency at compile time, (with gcc -MM). Nevertheless, link dependency (deciding which libraries should be linked to) seems to be difficult to figure out. ...
