A makefile is usually an input file for the build control language/tool make.

learn more… | top users | synonyms (1)

34
votes
15answers
5k views

Recommended build system for latex?

I'm trying to figure out the best build system for latex. Currently, I use latex-makefile, editing in vim, and viewing changes in Okular or gv. The major problem is that it sometimes gets hides ...
33
votes
4answers
22k views

Building Xcode Projects From the Command Line

I've been playing around with Qt for a few hours now. I found that qmake produces Xcode project files on Mac OS X instead of good ol' makefiles. I don't want to launch Xcode every time I want to build ...
29
votes
3answers
10k views

Makefile variable assignment

Can anybody give a clear explanation of how variable assignment really works in Makefiles. What is the difference between : VARIABLE = value VARIABLE ?= value VARIABLE := value VARIABLE += ...
23
votes
4answers
23k views

Ant: How to execute a command for each file in directory?

I want to execute a command from an Ant buildfile, for each file in a directory. I am looking for a platform-independent solution. How do I do this? Sure, I could write a script in some scripting ...
19
votes
3answers
320 views

What is the preferred way to structure and build OCaml projects?

It is unclear to newcomers to the ecosystem what is the canonically preferred way to structure and manage building small to medium sized OCaml projects. I understand the basics of ocamlc, ...
19
votes
3answers
11k views

Difference between CPPFLAGS and CXXFLAGS in GNU Make

What's the difference between CPPFLAGS and CXXFLAGS in GNU Make?
19
votes
3answers
11k views

GCC with Visual Studio?

How hard would it be to use GCC instead of VC++ from within Visual Studio 2008? Obviously, some of the keywords won't match, and some may not get syntax highlighting (unless you made a new language ...
18
votes
3answers
8k views

how to write cd command in makefile

for example I have something like this in my makefile all: cd some_directory but when I type make I saw only 'cd some_directory' like in echo command
18
votes
6answers
13k views

How can I configure my makefile for debug and release builds?

I have the following makefile for my project, and I'd like to configure it for release and debug builds. In my code, I have lots of #ifdef DEBUG macros in place, so it's simply a matter of setting ...
17
votes
3answers
8k views

Where can I find “make” program for Mac OS X Lion? [closed]

Just upgraded my computer to Mac OS X Lion and went to terminal and typed "make" but it says: -bash: make: command not found Where "make" command is gone?
17
votes
4answers
3k views

multi package makefile example for go

I'm trying to setup a multi package go project something like ./main.go ./subpackage1/sub1_1.go ./subpackage1/sub1_2.go ./subpackage2/sub2_1.go ./subpackage2/sub2_2.go where main.go imports both ...
16
votes
3answers
5k views

What is the purpose of .PHONY in a makefile?

What does .PHONY mean in a Makefile? I have gone through this, but it is too complicated. Can somebody explain it to me in simple terms?
15
votes
2answers
9k views

makefiles - compile all c files at once

I want to experiment with GCC whole program optimizations. To do so I have to pass all C-files at once to the compiler frontend. However, I use makefiles to automate my build process, and I'm not an ...
12
votes
5answers
1k views

What is currently the best build system

A few years ago I looked into using some build system that isnt Make, and tools like CMake and SCons seemed pretty primitive. I'd like to find out if the situation has improved. So, under the ...
12
votes
7answers
7k views

How can I have a Makefile automatically rebuild source files that include a modified header file? (In C/C++)

I have the following makefile that I use to build a program (a kernel, actually) that I'm working on. Its from scratch and I'm learning about the process, so its not perfect, but I think its powerful ...
12
votes
4answers
19k views

Makefile If-Then Else and Loops

Can someone explain how to use if-then statements and for loops in Makefiles? I can't seem to find any good documentation with examples.
12
votes
10answers
24k views

how to check if a directory exists in a makefile

I need to generate a directory in my makefile and I would like to not get the "directory already exists error" over and over even though I can easily ignore it. I mainly use mingw/msys but would like ...
11
votes
4answers
11k views

How can I use bash syntax in Makefile targets?

I often find bash syntax very helpful, e.g. process substitution like in diff <(sort file1) <(sort file2). Is it possible to use such bash commands in a Makefile? I'm thinking of something like ...
11
votes
2answers
4k views

Functions in Makefile

I am writing a Makefile with a lot of repetitive stuff, e.g. debug_ifort_Linux: if [ $(UNAME) = Linux ]; then \ $(MAKE) FC=ifort FFLAGS=$(difort) ...
10
votes
2answers
2k views

Trouble building gcc 4.6

I'm trying to build gcc 4.6, but I'm getting some linker errors that look like it means bison or flex isn't getting linked to. When the makefile issues this command: gcc -g -fkeep-inline-functions ...
10
votes
3answers
634 views

GNU Makefile rule generating a few targets from a single source file

I am attempting to do the following. There is a program, call it foo-bin, that takes in a single input file and generates two output files. A dumb Makefile rule for this would be: file-a.out ...
10
votes
3answers
5k 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 ...
10
votes
3answers
1k views

What does a typical ./configure do in Linux?

Why is it necessary though everything is specified in a makefile ?
10
votes
1answer
3k 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; ...
10
votes
5answers
13k views

Makefiles with source files in different directories

I have a project where the directory structure is like this: $projectroot | +---------------+----------------+ | ...
10
votes
3answers
8k views

CMake, Xcode and Unix Makefile

I was using classic Unix Makefile generator until I found a webpage explaining CMake could produce a nice xcode project file using "cmake -G Xcode" so I ran that command in my source directory and I ...
10
votes
9answers
9k views

Is it possible to create a multi-line string variable in a Makefile

I want to create a makefile variable that is a multi-line string (e.g. the body of an email release announcement). something like ANNOUNCE_BODY=" Version $(VERSION) of $(PACKAGE_NAME) has been ...
10
votes
3answers
10k views

Common GNU makefile directory path

I'm trying to consolidate some build information by using a common makefile. My problem is that I want to use that makefile from different subdirectory levels, which makes the working directory value ...
10
votes
5answers
17k views

How to generate a Makefile with source in sub-directories using just one makefile

I have source in a bunch of subdirectories like: src/widgets/apple.cpp src/widgets/knob.cpp src/tests/blend.cpp src/ui/flash.cpp In the root of the project I want to generate a single Makefile ...
9
votes
1answer
418 views

Python based build tools

I've been lately looking at build systems and I can't find anything close to what I want. I consider too low end, I don't like the syntax of bjam and CMake, and I really don't like that they are only ...
9
votes
2answers
608 views

Are makefiles Turing complete?

Lately at work, I've been doing some translation from Makefiles to an alternative build system. I've seen some pretty hairy Make code in some places using functional map, filter, and foreach ...
9
votes
2answers
13k views

How to write loop in makefile?

I want to execute these commands ./a.out 1 ./a.out 2 ./a.out 3 ./a.out 4 . . .so on How to write this thing as a loop in make file?
9
votes
2answers
7k views

Export a makefile from codeblocks

Is it possible to export a makefile from a c++ codeblocks project? If so, how is it done? Best Regards
9
votes
6answers
16k views

Creating a project, from Makefile to static/dynamic libraries in UNIX

Guys, would you describe a few things about c++ building blocks, on unix. I want to create an application that links against static libs and dynamic libs (.so). Question 1: How do I create static ...
9
votes
5answers
9k views

How to compile a simple Qt and c++ application using g++ on mac os x?

I am trying to use Qt for a project in school but am running into problems. I started following the tutorials and I am running into Makefile problems. Most of the tutorials say to run qmake -project, ...
9
votes
6answers
31k views

How to use makefiles in Visual Studio?

I heard a lot about makefile and how it simplifies the compilation process. I`m using VS2008, can somebody please advice me some online references or books when I can find how to deal with it?
9
votes
4answers
9k views

generate dependencies for a makefile for a project in C/C++

I have a project that has a makefile with broken dependencies. Is there any best known way to generate a list of dependencies for the project that I can use in the makefile, other than examining each ...
9
votes
4answers
5k views

crti.o file missing

I'm building a project using a gnu tool chain and everything works fine until I get to linking it, where the linker complains that it is missing/can't find crti.o. This is not one of my object files, ...
8
votes
2answers
181 views

how to include git commit # into a c++ executable?

i use git as a version tracker for my c++ project. sometimes i need to repeat a calculation and i would like to know which version of the program i used. what would be a good way to put a # of the ...
8
votes
10answers
1k views

Create linux make/build file

I am moving a C++ project from Windows to Linux and I now need to create a build/make file. I have never created a build/make file before. I also need to include Boost libraries to make it more ...
8
votes
4answers
5k views

Passing additional variables from command line to make

How to pass variables to gnu makefile from command line arguments? In other words I want to pass some arguments which will eventually become variables in makefile.
8
votes
4answers
4k views

How to make SIMPLE C++ Makefile?

For a project, we are required to use a makefile to pull everything together, but our abhorrent professor never showed us how to. I only have ONE file, a3driver.cpp. The driver imports a class from a ...
8
votes
4answers
6k views

Simple makefile with release and debug builds - Best practices

I am new to makefiles. I learned makefile creation and other related concepts from "Managing projects with GNU make" book. The makefile is ready now and I need to make sure the one which I created is ...
8
votes
13answers
2k views

C++ development on linux - where do I start?

I decided to leave my windows install behind and am now running Debian as my default OS. I have always coded in Windows and specifically with Visual Studio. I am currently trying to get used to ...
8
votes
3answers
1k views

In Unix, can I run 'make' in a directory without cd'ing to that directory first?

In Unix, can I run 'make' in a directory without cd'ing to that directory first?
8
votes
5answers
6k views

gcc dependency generation for a different output directory

I'm using gcc to generate a dependency file but my build rules put the output into a subdirectory. Is there a way to tell gcc to put my subdirectory prefix in the dependency file it generates for me? ...
7
votes
2answers
152 views

What does the double “at” (@@) symbol do in a Makefile?

I have often seen Makefiles that start commands with an "@" symbol to suppress normal output. target: test @echo foo Has this output: $ make test foo But I often encounter Makefiles with @@ ...
7
votes
2answers
223 views

Finding makefile dependencies

I have several widgets denoted by a config.xml in their root in a directory layout. The GNUmakefile I have here is able to build them. Though if I update the folders, the dependencies aren't tracked. ...
7
votes
2answers
557 views

In a makefile, is a directory name a phony target or “real” target?

According to what I have read about makefiles, a phony target is any target that does not correspond to an actual filename. My intuition says that a directory as a target would be treated the same as ...
7
votes
5answers
275 views

What do companies use to build their binaries?

What do modern companies use to compile and link their projects? Especially with large projects, makefiles don't seem usable enough to be scalable. As far as I can tell, many companies use either ...

1 2 3 4 5 40