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

5
votes
3answers
1k views

makefile with directory tree creation suitable for parallel (-j ) build

My project needs temporary directories which are created during the build using mkdir -p similarly to this: all: dirtree $(OBJFILES) dirtree: @mkdir -p $(BUILD)/temp_directory But this approach ...
12
votes
4answers
7k views

Make error installing Ruby 1.9.2 with RVM and Readline under OSX Lion

I'm having extensive problems getting rvm to work again under OSX Lion. Unsurprisingly, it seems to be a problem with readline, which is noted in several places. HOWEVER, (and this is an update) it ...
4
votes
4answers
4k views

GNU make: Generating automatic dependencies with generated header files

So I followed the Advanced Auto-Dependency Generation paper -- Makefile: SRCS := main.c foo.c main: main.o foo.o %.o: %.c $(CC) -MMD -MG -MT '$@ $*.d' -c $< -o $@ cp $*.d $*.tmp sed ...
4
votes
3answers
2k views

make include directive and dependency generation with -MM

I want a build rule to be triggered by an include directive if the target of the include is out of date or doesn't exist. Currently the makefile looks like this: program_NAME := wget++ ...
3
votes
1answer
776 views

Make File for Javascript

Can somebody tell me how can i use make files to combine and merge different javascript files. I have seen many different projects using different javascript files and later on merge by using MAKE ...
2
votes
2answers
212 views

How to ensure a target is run before all the other build rules in a makefile?

I have a C++ project which contains a generated file that all the other C++ files depend on. I'm trying to force that file to be generated and compiled before any other compilation begins. Usually ...
12
votes
2answers
585 views

How to learn the Joy of Autotools? [closed]

So a couple years back I took some time to grok make, and it's paid off enormously. Writing little makefiles for building my projects and automating tasks is fun and productive. The downside is, of ...
9
votes
4answers
6k views

Error in android NDK make program cannot find

I am trying to Set up Android NDK using this Link. I started Set up process by following command make -v and i am getting $ make -v bash: make: command not found Then i entered ...
8
votes
2answers
1k views

GNU make differences in multiline variable declarations

I read this question, and I was surprised it wasn't working: Why GNU Make canned recipe doesn't work ? So I tried it myself and got the same results. Here's an example makefile: define foo bar baz ...
7
votes
1answer
3k views

OS X Mountain Lion: gcc-4.2 No such file or directory

Tried to install a gem on Mountain Lion and make couldn't find gcc-4.2: kamil$ gem install posix-spawn -v '0.3.6' Building native extensions. This could take a while... ERROR: Error installing ...
7
votes
2answers
759 views

Why does the library linker flag sometimes have to go at the end using GCC?

I'm writing a small C program that uses librt. I'm quite surprised that the program won't compile if I place the link flag at the start instead of at the end: At the moment, to compile the program I ...
7
votes
4answers
2k views

Parallelization of recursive jobs in GNU make

I am looking for an elegant way for the parallelization of jobs in GNU make. Here is a sample of what I did so far. Make processes the directories dir-1, dir-2 and dir-3 in a serial fashion which is ...
6
votes
3answers
3k views

How to build ASSIMP Library for iOS (Device and Simulator) with boost-library?

I want to use the ASSIMP library http://assimp.sourceforge.net in an iOS project. Unfortunately, I'm not very experienced with makefiles and that stuff, so I need some help. I've downloaded the ...
6
votes
2answers
1k views

How does one use Obj-C 2.0 with GNUstep?

I'm aware of the existence of libobjc2, and I gather that I'll need to use clang rather than GCC, but I can't find any basic instructions of what's different about the compilation process. Can anyone ...
28
votes
3answers
5k views

What does a typical ./configure do in Linux?

Why is it necessary though everything is specified in a makefile ?
9
votes
2answers
414 views

What's best value for make -j

What's the best value of -j switch? I usually set this up to the number of CPU/Cores available. Thanks.
7
votes
2answers
1k views

NetBeans settings for GCC

When I click on project properties ( this time CppApp_15 ) I can set Warning level(more) and Command line options (-std=c99). But I want that all my C project have that kind of options by default ...
6
votes
1answer
122 views

How to get the second dependency file using Automatic Variables in a Makefile?

I need to get the nth dependency file from a rule, something similar to $n in bash. I need this because I'd like to feed in individual dependency files as options to the build program. Here's an ...
6
votes
6answers
8k views

“sh: make: command not found” when running “$ bundle” after adding redcarpet gem to Rails app

I'm getting the following when running "$ bundle" after adding "gem 'redcarpet'" to Gemfile: $ bundle ... Using paperclip (2.3.11) Using passenger (3.0.7) Installing redcarpet (1.17.2) with native ...
5
votes
3answers
2k views

rvm install ruby-1.9.3-p286: Error running 'make -j 9' (OSX: Mountain Lion)

Running rvm install ruby-1.9.3-p286 gives me this error: Error running 'make -j 9', please read /Users/epeterson/.rvm/log/ruby-1.9.3-p286/make.log There has been an error while running make. Halting ...
5
votes
1answer
2k views

How similar/different are gnu make, microsoft nmake and posix standard make?

How similar/different are gnu make, microsoft nmake and posix standard make? Obviously there's things like "which OS?", "which compiler?" and "which linker?", but I'm referring specifically to the ...
4
votes
5answers
2k views

Make “make” default to “make -j 8”

Is there a way that I can make $ make default to: $ make -j 8 ? Thanks!
3
votes
2answers
2k views

Using Make's 'wildcard' function in Android.mk

I'm having a problem using Make's wildcard function in my Android.mk build file. My other makefiles use a line like this one to specify "All .c files in this folder": CFILES := $(wildcard *.c) In ...
3
votes
2answers
2k views

Executing MSYS from cmd.exe with arguments

I am trying to learn wxWidgets library, using mingw and msys to compile the code. So far so good, but I can not find a way to send a command to MSYS through CMD.exe. I use SublimeText to edit files, ...
2
votes
1answer
479 views

in m4's patsubst, how do I replace newlines with spaces?

How can I tell m4's patsubstr to replace all newlines in a string with a space? I've tried: patsubst(MULTI_LINE_STR_DEFINE,`\n',` ') and patsubst(MULTI_LINE_STR_DEFINE,`\\n',` ')
0
votes
2answers
2k views

Linking cURL in Makefile

I need link cURL in Ubuntu 11.04 after installed cURL by source code. . Correction of the PROBLEM First I discovered that the -l must come before the -L and then discovered that I was not entering ...
-1
votes
1answer
212 views

Make [GNU-Make gcc or what ever] on OpenSuse 12.1 - how to accomplish

good dear fello Perl-Programmers, hope you are all right! l...there are a lot of problems here: how do i install the module Mechanize::Firefox on OpenSuse 12.1 It seems that bunch of dependencies ...
24
votes
1answer
12k views

How to assign the output of a command to a Makefile variable

I need execute some make rules conditionally, only if the Python installed is greater than a certain version (say 2.5). I've thought that I could do something like executing python -c 'import sys; ...
7
votes
3answers
3k views

Enable Exception C++

I am trying to make APP native code for Android. The Native code is in cplusplus. Whenever I try to make, the following error appears. H236Plus.cpp:135: error: exception handling disabled, use ...
6
votes
2answers
8k views

How “make” app knows default target to build if no target is specified?

Most linux apps are compiled with make make install clean As i understood, make takes names of build targets as arguments. so "install" is a target that copies some files and after that "clean" is ...
4
votes
1answer
520 views

making all rules depend on the Makefile itself

When I change a Makefile, its rules may have changed, so they should be reevaluated, but make doesn't seem to think so. Is there any way to say, in a Makefile, that all of its targets, no matter ...
3
votes
1answer
3k views

Error in installing Open-CV with ffmpeg

I am trying to install the library Open-CV working on on Ubuntu 11.04. I followed all instructions found in the InstallationGuide. However after installing with success I realized that I hadn't ...
2
votes
1answer
619 views

Does linking switch order matters?

I tried to put up an example using c++ for accessing Cassandra, and so Using Thrift. Copying the example, I had this strange situation: storm@debian:~/Script/goh-server/src/cassandra$ g++ ...
2
votes
2answers
400 views

ar on an existing .a file?

Essentially, what I want to do is this: gcc foo.c -o foo.o ar rcs foo.a foo.o gcc bar.c -o boo.o ar rcs bar.a bar.o foo.a I want to archive both an object and a static library into another static ...
1
vote
2answers
1k views

Sublime Text Build System that just “make”

I'm trying to build my project by simple executing make in the top directory. However, when I do, I get the following error: [Errno 2] No such file or directory [cmd: [u'make']] [dir: ...
1
vote
2answers
384 views

How to manage C header file dependencies?

I've a lot of C files, some have a header (.h), some files not. Here's my makefile : .SUFFIXES: SRC := $(wildard ./src/*.c) OBJ := $(SRC:%.c=%.o) all: $(OBJ) %.o: %.c $(MyNotGCCCompiler) ...
1
vote
3answers
214 views

Vim tries to jump to nonexistent file after :make

I'm using :make from vim and ending up jumping to the file with issues. Recently, at least I noticed with gcc 4.6.1, vim jumps to incorrect file/line because it goes to the first reported line which ...
1
vote
3answers
411 views

Automatic header dependencies with gmake

EDITED I'm trying to have source files recompiled without having to specify header files for each CPP in the makefile. I'm down to : #CoreObj1.cpp(and .h) #CoreObj2.cpp(and .h) #This is the ...
1
vote
3answers
732 views

linking against a static library

gcc Version: 4:4.4.4-1ubuntu2 GNU Make 3.81 I have the following library called net_api.a and some header files i.e. network_set.h I have include the header file in my source code in my main.c ...
1
vote
2answers
1k views

Workaround for GNU Make 3.80 eval bug

I'm trying to create a generic build template for my Makefiles, kind of like they discuss in the eval documentation. I've run into a known bug with GNU Make 3.80. When $(eval) evaluates a line that ...
0
votes
2answers
192 views

Compile several projects (with makefile), but stop on first broken build?

I want to do something like: for i in * do if test -d $i then cd $i; make clean; make; cd -; fi; done And this works fine, but I want "break" the for-loop in case of a broken ...
0
votes
3answers
611 views

make file for Java/Linux

I have the following makefile after running it once I make some changes to the makefile and now when I run it I get a "make: Nothing to be done for `default'." How can I force it to rebuild? I ...
0
votes
1answer
2k views

Code::Blocks: CMake generated Makefile says “Nothing to be done.”

I just installed Code::Blocks with MinGW on my Win7 64 Box and tried to compile a CMake generated project (namely openclonk). -------------- Clean: all in clonk --------------- Cleaned "clonk - ...
0
votes
2answers
4k views

Compiling ImageMagick as 64bit under OS X?

I'm trying to install moddims on OS X (see previous question), an Apache module with a dependency on ImageMagick. As far as I can tell, the OS X Apache is compiled as 64 bit. My previous attempt to ...
25
votes
3answers
18k views

CFLAGS vs CPPFLAGS

I understand that CFLAGS (or CXXFLAGS for C++) are for the compiler, whereas CPPFLAGS is used by the preprocessor. But I still don't understand the difference. I need to specify an include path for ...
29
votes
4answers
11k views

How to discover number of cores on Mac OS X?

Google is failing me, so I decided to ask here... How can you tell, from the command line, how many cores are on the machine when you're running Mac OS X? On Linux, I use: x=$(awk '/^processor/ ...
23
votes
10answers
15k views

any good tool for makefile generation?

I'm looking for a tool which can generate makefile for a C/C++ project for different compilers (gcc, microsoft vc++, borland etc) and different platforms (Win, Linux, Mac).
55
votes
15answers
6k views

Why is no one using make for Java?

Just about every Java project that I've seen either uses Maven or Ant. They are fine tools and I think just about any project can use them. But what ever happened to make? It's used for a variety ...
26
votes
13answers
14k views

List goals/targets in GNU make

I have a fairly large makefile that creates a number of targets on the fly by computing names from variables. (eg foo$(VAR) : $(PREREQS)). Is there any way that gnu make can be convinced to spit out ...
9
votes
2answers
2k views

Make/makefile progress indication!

Look at this makefile, it has some sort of primitive progress indication (could have been a progress bar). Please give me suggestions/comments on it! # BUILD is initially undefined ifndef BUILD ...

1 2 3 4 5 7