The tool called make is a build manager which compares the last modification times of various files and performs user specified actions (commands) when the "target" files are found to be older than their dependencies. Canonically it is used to build programs, but it can be used to manage any process ...
1
vote
1answer
15 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
10 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
33 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
1answer
24 views
make install fails when trying to install Python Audio Tools
I am trying to install Python Audio Tools, but when I run make install I get the following output:
python setup.py build
running build
running build_py
running build_ext
building 'audiotools.cdio' ...
0
votes
2answers
33 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
38 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
17 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:
...
3
votes
4answers
35 views
why “make” before “make install”
I know the process of installing from source are.
./configure
make
make install
but why "make" before "make install", why not just do "make install"
my understanding so far is "make" only ...
1
vote
0answers
20 views
gnu linker: file not recognized
this is my makefile:
obj =init3.o initfunc.o descriptor.o disk.o
init:$(obj)
ld -o init.out $(obj)
init3.o:init3.asm
nasm -f aout init3.asm
initfunc.o:initfunc.asm
nasm -f ...
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
21 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 ...
0
votes
1answer
17 views
How to execute using path on AIX
When I try to execute a command within a folder :
$ omniidl
omniidl: No files specified. Use 'omniidl -u' for usage.
But, when I try to execute it using the path:
$ ...
2
votes
2answers
44 views
Makefile with Fortran - src and bin directories
I'm having some trouble understanding how to design my makefile to build my project the way I want to. Specifically, I can't figure out how to keep all source files in a src directory, while putting ...
1
vote
0answers
25 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
1answer
19 views
Error installing Ruby with RVM: make “-j” argument
I have followed the instructions on RVM website to install it on my Ubuntu 12.04 64bit. Now when I try to install Ruby I get a building error:
$ rvm install ruby-1.9.3
(...)
ruby-1.9.3-p429 - ...
0
votes
1answer
16 views
'make' error: setting paths for compiling
i got a problem when compiling the netCDF library (parallel version).
In particular the problem is related to the different paths I guess.
The problem is I'm not the admin of the machinge. However, ...
0
votes
1answer
50 views
C continuous integration
I have a C project compiled with a set of makefiles. I would like to do continuous integration of this project. Do you know a tool such as Jenkins I can use for my C project?
1
vote
2answers
23 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
0answers
7 views
Specifying link flags for make and clang
I am building Netscape Portable Runtime. I get linking error at some point. The problem is one missing argument to the link command. What make is doing is this:
clang nsinstall.c -o nsinstall.o -c ...
0
votes
1answer
27 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
0answers
34 views
Given a file, how do I get thet targets which depends on that file?
I am using cmake to generate Makefiles.
Given a Cpp file, I want to know if it is possible to get the list of targets in a Makefile (or a CMakeLists.txt file) which depends on that file, directly or ...
0
votes
1answer
21 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
25 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 ...
0
votes
1answer
27 views
Which libraries are used by the make process?
My build is failing to link, probably because it's attempting to link against the wrong version of libaries (namely, libssl). The makefile's LIBS directive specifies -lssl, which isn't explicit ...
0
votes
1answer
16 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 ...
0
votes
0answers
17 views
qt error when install qtstalker
im trying to install qtstalker(the stock charting tool) on Ubuntu 12.10 by following the instructions on this page, ...
1
vote
2answers
73 views
OCaml: new_line equivalent before 3.11
I'm trying to compile Libra toolkit on a machine running Ubuntu Hardy with OCaml 3.10, I can't upgrade the OS nor update OCaml, and I don't know anything about OCaml. There is only one line that gives ...
3
votes
1answer
61 views
MinGW annoying behavior, sometimes compiles, sometimes not?
I am compiling and debugging my little project with msys and MinGW. Sometimes, it compiles just fine but about 2/3 of time instead prints this error message:
include/player.h:1:0: fatal error: can't ...
-1
votes
1answer
37 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
2answers
22 views
ubuntu - permission denied after make
i like to run libsvm on my ubuntu client. I downloaded the files and run "make" but if i run ./svm-scale i got a permission denied.
I am new to linux/ubuntu how can i set the permissions?
This is ...
0
votes
3answers
42 views
automake configure ignoring option --with-libxml2=yes
I am trying to compile, libgphoto2 with libxml2 support followint the guidelines here. Everything is ok until I try to run ./configure:
./configure --prefix=/tmp/gphoto2/local --with-libxml2=yes
...
0
votes
1answer
24 views
What kind of Makefile variable assignment is this?
I've used simple makefiles for years, but only recently been assigned the task of learning the ins and outs of a large, complicated set of Autotools-generated makefiles which is used for a code base ...
0
votes
0answers
20 views
libtool error compiling under mingw: generated EXE_PATH_VALUE has extra quotes
I'm attempting to compile a few projects using MinGW on Windows (ZeroMQ and Google Protocol Buffers) and I've run into the same error each time. Partially through running make, each install generates ...
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 ...
0
votes
1answer
36 views
Compile a kernel module using qmake project
I have the following project structure:
/
general.pro
a/
a.pro
some files
b/
b.pro
some files
c/
Makefile
some files
general.pro is a ...
0
votes
2answers
56 views
How to make spinner in dialog mode?
I have button in my application and when I click on this button, it opens a spinner, but spinner is in dropdown mode and I need to make it in dialog mode. For API 11 and higher, there is a simple code ...
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 ...
1
vote
0answers
40 views
Makefile for nrf51sdk
I am working on programming a nrf51822 evaluation board(This one). I have been looking at this site to program it and have gotten the blinking program to work.
I want to modify the makefile provided ...
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
27 views
Multiple sets of rules to convert .cpp files into .o files in make
Say I have the following makefile:
SRC = trav.cpp
LSRC = node.cpp tree.cpp
LIB = lib/libvtree.so
OBJS = $(patsubst %.cpp,obj/%.o,$(SRC))
LOBJS = $(patsubst %.cpp,obj/%.o,$(LSRC))
$(LOBJS) : ...
0
votes
1answer
73 views
make file : yacc command not found and [y.tab.c] error 127 after installing bison
There is a given r-tree code by Toni Guttman(it's been modified for my homework), however, if I change an parameter(the dimension of the node), then "make" will cause such errors:
yacc y.spec
make: ...
0
votes
2answers
34 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 ...
0
votes
0answers
45 views
bow toolkit ubuntu /usr/bin/ld: cannot find -lgcc_s collect2: ld returned 1 exit status make: *** [rainbow] Error 1
while Installing Bow toolkit in ubuntu 12.04, the following error occurs
$make
gcc-3.4 -lnsl -L. -lbow -L./argp -largp -lm -lcrypt -g -O -Wall -Wimplicit -o rainbow rainbow.o active.o deflexer.o ...
0
votes
1answer
34 views
which files of an autoconf project to put into .gitigore?
We have the ctemplate library included in our git-managed project which is based on GNU Autoconf. I would like to put everything which is generated by Autoconf into the .gitignore file to avoid ...
1
vote
2answers
55 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
1answer
64 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
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 ...

