4
votes
1answer
54 views
Makefile always recompiling a file
I am learning how to set up makefiles, and have ran into a problem. To demonstrate this I have created a simple "project" consisting of source files main.m and test.m.
I am trying to setup make to ...
0
votes
0answers
12 views
Using multiple modules in Android NDK
I having trouble setting up my Android NDK based project with multiple modules which depend on each other.
What I would like to accomplish:
jni
Application.mk
Android.mk (includes ...
0
votes
1answer
31 views
Trying to compile a target. It is C code. Have put #ifdef MYDEBUG. How to pass it as set during compilation?
I am trying to compile a target using make. In my code, I have put prepossessing conditionals as:
#ifdef MYDEBUG
(code to execute)
#endif
Now I was under the impression that if I do a
make ...
0
votes
2answers
28 views
How to create a Makefile for an existing project
I'd like to create a Makefile for a moderately sized C++ project (~110 .cpp and .h files) that was created in Xcode. I don't own a mac, so I can't just go into xcode and export a Makefile.
From my ...
0
votes
1answer
31 views
C++ Makefile performing an updating build
I currently have a project structure where the main project, at the root level, has a makefile and all the components, located in their own folders, have their own makefiles as well. These component ...
0
votes
1answer
23 views
Conditional part of makefile always evaluating to true
I have a legacy makefile based build system that I am trying to make changes to. I am not familiar with make and so was making changes on a trial and error basis.
Not being able to deduce what the ...
0
votes
1answer
16 views
How to create a make target for an unknown number of subdirectories?
I want to create a make target which builds all matching files in all nested subdirectories where the number of nested directories is unkown.
I would like to be able to do something like:
...
1
vote
1answer
21 views
Running make run 2 times on a makefile
I'm running a two executalble makefile, and I got this problem:
Everytime I do a make run (heuristica or otimo) it runs the otimo and then runs the exe I've said to run (if I choose otimo then it runs ...
0
votes
1answer
14 views
Get current job number in makefile
Is there a way to get current job number to use in makefile rule?
Let me give you a little context.
I am using a tool which runs on multiple files. Naturally I use parallel jobs to speed things up. ...
0
votes
1answer
56 views
different output in Makefile rule
In the following Makefile
f = echo $(1)
t:
$(call f,"a \
b"); \
$(call f,"a \
b")
there is only one TAB, at the beginning of line 4 (the first call f)
no blanks at the end ...
0
votes
2answers
38 views
Import environment settings into Makefile (ubuntu and osx)
In a shell script I can
. conf/environment
Can I do the same in Makefile?
1
vote
1answer
41 views
Make file targetting all C files in a directory
I want to make some shared library settings using pkg-config that would be applied when any ".c" file is compiled inside a directory. How do I access the name of the file in the make rule?
For ...
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
19 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:
...
0
votes
1answer
11 views
Importing a makefile inside Eclipse - symbols could not be resolved
I'm trying to import an existing project into Eclipse. I did the following steps:
- I downloaded the source from a repository.
- I ran ./autogen.sh
- I ran ./configure
- I selected Makefile Project ...
0
votes
2answers
22 views
How to determine which Makefile is targeting a given file?
I am modifying a shared library. I copied the contents of a directory to a new sibling directory and ran a Make on the entire library. However, I am receiving the following error:
Make: *** No rule ...
1
vote
0answers
29 views
Problme in External Makefile in Ardrone SDK
I develop an example (Ardrone SDK Version 1.8) in a directory that is outside the project (Ardrone SDK Directory) and made myself Makefile. However, this error appeared:
teste_ardrone.cpp:68:1: ...
1
vote
2answers
27 views
Recursive use of make for LaTeX
I am using a Makefile to handle building a LaTeX document. I have two directories ./tikz and ./feyn that contain .tex files and Makefiles to compile them. They produce figures which I then include in ...
0
votes
1answer
29 views
makefile compile with gcc UNIX
Trying to make makefile to turn all .c into execute files in directory.
For example:
am.c
2.c
s.c
into
am
2
s
programs.
Anything works,but it uses cc, but I want to use gcc compiler.
How can I ...
0
votes
1answer
24 views
GNU Make: sed doesn't work when piped inside of $(shell)
Here is my experimental Makefile.
.SECONDEXPANSION:
~/hello.txt: $(shell echo '$$(@D)/')$(shell echo '$$(@F)' | sed -e 's/hello/bye/')
echo "$^"
Somehow the sed command doesn't work, and Make ...
0
votes
1answer
26 views
Linking step doesn't get object files from correct location
I've written a makefile that links in a few ffmpeg libraries and compiles a basic hello world piece of code. I want all the object files and the executable to go into a ./bin folder.
I use vpath to ...
-1
votes
1answer
41 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
82 views
Looking for well-logged Make output
Shorter question:
Make targets have files as dependencies; let's say one example dependency is the file "D." I would like Make to traverse its dependency graph, and for each "D," also depend on ...
0
votes
0answers
32 views
Automake dependencies generation
I am using automake on Debian Squeeze for compiling a very simple C project with 6 source files.
The issue comes when I try to compile the sources using the generated Makefile. One of the sources ...
1
vote
3answers
78 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
2answers
37 views
*** missing separator. Stop. Make file
i'm getting this error:
make:24: *** missing separator. Stop.
Although i changed all space character with tab in line 24.
Line24:arm_v5t_le-gcc $FILES $INCLUDES $LIBS -o $TARGET
Here is the ...
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
1answer
67 views
How to build c project mixed with some c++ code using Make?
I have a c project which I have been building using the following Makefile.
CC=gcc
CFLAGS= -g
LIBS= -lm
MOSEK_H= /home//work/mosek/6/tools/platform/linux32x86/h/
MSKLINKFLAGS= -lmoseknoomp -lpthread ...
0
votes
2answers
33 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 ...
5
votes
0answers
71 views
How to have make build from one directory if the source file exists, otherwise build from another?
I'm working on modifying a huge recursive makefile project that has 6000+ source files. All of which are clearcase controlled. Since I don't want to copy the whole source tree, I'm trying to create ...
1
vote
1answer
50 views
ldd says library isn't found by compile completes successfully
I am attempting to compile project. It compiles successfully. My make command exits with a status code of 0 and there are no errors displayed.
However, the project is not working, and when I run ldd ...
0
votes
3answers
80 views
How to create a simple makefile? [closed]
I have three files: main.c, foo.c, and foo.h. I was wondering how to make the simplest makefile possible for this? I've never made a makefile before and everything I've tried is just giving me ...
0
votes
1answer
38 views
Error: mixed implicit and normal rules
I have just updated make to
GNU Make 3.82
Built for x86_64-pc-linux-gnu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later ...
0
votes
3answers
28 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
0answers
31 views
Why do we have different ways to install different applications? [closed]
The point I'm trying to convey is that, why can't we all follow the MakeFile system which would kinda work afaik in many cases and it's generic.
We have so many different systems that essentially do ...
0
votes
0answers
19 views
Need help understanding target groups for clearmake, makefiles, and parallel builds
I am trying to use clearmake with a -J N flag, but when it gets to building, I get this warning:
Rules with multiple targets may not build correctly in parallel,
unless they are declared as a 'target ...
0
votes
0answers
20 views
Target not matching when using %
In one of my Makefile, I have this target:
obj/gen/com/qdii/tatoparser/%.class: $(srcdir)/$(RDNS)/%.java
$(JAVAC) $(ANDROID_FLAGS) $<
I would like to build the object ...
2
votes
1answer
41 views
pass a target name to dependency list in makefile
I am trying to write a makefile to build a set of c++ programs in the same directory that have independent source code, but similar compilation rules and shared dependencies (common headers).
...
0
votes
1answer
26 views
Calculating a file path in makefile
I need to calculate a file path based on some subsytem names. See MWE below. Is there an easier way to achieve the same please? See my aa, ab, ac and join approach below.
I'm not keen on the ...
0
votes
1answer
42 views
Makefile bash autocompletion issue with PHP generated targets
In a large Makefile managed project, I recently added some PHP generated targets and bash completion stopped working: pressing [tab] does not trigger completion, but inserts a tab character.
I ...
0
votes
1answer
26 views
Makefile to execute a sequence of steps
I use make to execute a series of process steps. Each step depends on the success of the previous one. Once completed a step, I touch a file with the name of the step into a separate directory.
Here ...
0
votes
1answer
48 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
1answer
62 views
make file issue: error at every line
I try to build a library of some project. When I run it as ./MakeFile from terminal I get a bunch of errors for every line. Below is the makefile and the errors. What is wrong with it? For other ...
0
votes
1answer
26 views
Special case pattern rules in Makefile
I have a generic rule for files with a given extension, but I want to add special cases for files with a prefix. I tried this:
special-%.dat: special-%.raw
echo "Running rule 1"
%.dat:
echo ...
0
votes
1answer
26 views
How can I create a makefile that will create two separate executables?
I'm very new to makefiles and using one that was given to us for a project, and I'm expanding it a little bit.
This makefile currently takes one arg, the name of the executable you want to make. In ...
0
votes
2answers
39 views
Makefile does not read the rest
I have a problem with make file. It does not continue to read after creating the first .o file. Here is my make file:
CC = g++
CFLAGS = -g
LDFLAGS = -lm
PokerEval.o: PokerEval.cpp
${CC} ...
0
votes
2answers
39 views
Execute with 'make run'
Say I have a makefile, upon compiling with the command make, it produces an executable named 'run'.
So far, I know that 'make' is used to compile multiple source codes but what I have never heard of ...
1
vote
1answer
39 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 ...

