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 ...

learn more… | top users | synonyms

1
vote
1answer
37 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
17 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
15 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
31 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
19 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
7 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
20 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
39 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
22 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
16 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
15 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
46 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
6 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
24 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
26 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
15 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
36 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
21 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
19 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
31 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
50 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
76 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
38 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
26 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
67 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
32 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
41 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
63 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
30 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 ...
1
vote
1answer
91 views

IntelliJ IDEA Android make is slow

I recently switched to IDEA as I often had have problems with Eclipse. Overall everything feels great. However, one issue annoys me. Building a simple application take a lot of time. If I change only ...
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 ...
-1
votes
1answer
118 views

node-gyp build error while installing raw-socket

I am trying to install net-ping module on my nodejs but I get a strange error in the raw-socket installation phase. I had the same flock problem when I was compiling nodejs source code for ...
0
votes
0answers
28 views

Compilling x-debug makes error cc: error: Configuring: No such file or directory

I tried to install xdebug on ubuntu (with lampp - xampp), at the begining got problem like here xdebug - wrong ELF class: ELFCLASS64 after command LDFLAGS=-m32 CFLAGS=-m32 CPPFLAGS=-m32 ./configure ...
5
votes
0answers
69 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 2 3 4 5 61