Tagged Questions
0
votes
1answer
56 views
CPPFLAGS equivalent in Xcode project
So I'm trying to port a make file to Xcode. Not sure where to put stuff from CPPFLAGS.
Currently CPPFLAGS = -I../src/ meaning that the preprocessor will append ../src/ to the include directives while ...
1
vote
1answer
52 views
How to copy files from the package to the main codebase?
I have got a plugin package to enhance the working of our product. This package contain some additional files and some modified main code-base repository files. But we can't directly merge this ...
0
votes
2answers
369 views
Makefile recursive not passing CPPFLAGS
First of all, sorry if I end up making a too long post, but I think it would be missing information otherwise.
I'd like to include my repository version in each build.
There is a main makefile that ...
2
votes
3answers
184 views
How to redirect the output of a utility that generates lots of separate output files?
My build process uses lots of closed-source 3rd-party utilities. These tools generate lots of files, separated into three categories: the files I want, reports, and crap. Sometimes I can choose the ...
4
votes
1answer
903 views
How to make GNU/Make stop de-referencing symbolic links to directories
GNU/Make manual §5.7 states the following:
5.7 Recursive Use of make
Recursive use of make means using make as a command in a makefile.
This technique is useful when you want separate ...
6
votes
1answer
2k views
Use Xcode as Javascript IDE, possible?
I'm working on a Javascript-intensive web app designed to run on iPhone/iPad for now. It also works on all Webkit browsers (Safari + Chrome).
I have a home-made MVC framework consisting of many ...
2
votes
3answers
912 views
makefile setting a variable in if statement in a target
I have a Makefile with the following:
AVAR=""
all :
if [ -d ../old ]; then \
(echo "$@ Ping!"; AVAR="../old"; echo $(AVAR)) \
fi
@echo $(AVAR)
The idea is that depending on the ...
2
votes
1answer
79 views
Measuring build times to identify bottlenecks
I'm working on improving the build for a few projects. I've improved build times quite significantly, and I'm at a point now where I think the bottlenecks are more subtle.
The build uses GNU style ...
1
vote
1answer
87 views
Generate a Makefile from source and executable?
I've got a large code base that builds fine using a old custom build system cobbled together using bunch of bash scripts and simple Makefiles recursively combined.
How can I go about recreating the ...
0
votes
1answer
170 views
Update option (of Make file) in CMake
I have a big project that uses CMake to create Make file. Sometimes, I add one small project and then have to run the CMake script for whole project (like delete previous, and create newer CMake with ...
0
votes
1answer
76 views
Can progress be fetched from “configure” and autotools-generated “Makefile”?
I'm building tons of projects at once, and while they're being built, I'd like to do other stuff on the same machine, while being able to monitor the progress.
Is there a way to fetch current ...
1
vote
3answers
945 views
Parallel Make Output
When running a CMake generated Makefile with multiple processes (make -jN), the output often gets messed up like this:
[ 8%] [ 8%] [ 9%] Building CXX object App/CMakeFiles/App.dir/src/File1.cpp.o
...
2
votes
1answer
2k views
How can I set an Android Makefile to copy/rename files?
According to the Android online docs there's currently no way to specify multiple/mixed file extensions for the gcc compiler in an Android makefile. The source I'm using, a public project, has ...
5
votes
2answers
2k views
Out of tree builds with makefiles and static pattern rules
I'm working on some bare-metal embedded code that runs on ARM, and thus has to deal with the whole ARM vs. THUMB mode distinction. The current build system uses static pattern rules to determine ...
1
vote
2answers
354 views
Partial compilation of openwrt project
I would like to get an idea or reference to compile only subset on the openwrt project.
i am aware of the menuconfig utility but this is not enough for my goal.
i would like to compile only the ...
0
votes
1answer
405 views
Specifying build dependency in parallel builds using make
This is what I have:
Test scripts under a folder that use some executables in the source tree.
Sources for the executables used above under a separate folder in the source tree.
What I want to ...
12
votes
1answer
792 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 ...
7
votes
5answers
360 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
vote
1answer
340 views
Generating IDL entities using automake/Makefile.am
For those unfamiliar with IDL (interface description language), it abstracts data description for use across platforms (java, c, c++, etc). My project has dependencies Foo.c, Foo.h, FooHelper.c, and ...
0
votes
2answers
172 views
Does CMake has something like % substitution support from Make?
I need a chain of file processing in my build-process. Workflow can be easily specified and built around a filename, only extension changes, like file.a -> file.b -> file.c. So, it's clearly a case ...
2
votes
2answers
824 views
Does Visual Studio 2008 use make utility?
I have checked in buid directory and have not found makefile there. How does Visual Studio 2008 buid the project? Does it use makefile?
14
votes
1answer
15k views
Makefiles - Compile all .cpp files in src/ to .o's in obj/, then link to binary in /
So, my project directory looks like this:
/project
Makefile
main
/src
main.cpp
foo.cpp
foo.h
bar.cpp
bar.h
/obj
main.o
foo.o
...
0
votes
2answers
731 views
Creating a directed acyclic graph out of recursive nmake makefile?
As an exercise and in an effort to (better understand|help other people better understand) the build process at my company, I am hoping to create a directed acyclic graph of the build process.
The ...
1
vote
1answer
740 views
CMake and including other makefiles
Lets say I have a CMakeLists.txt and I want to call another include another makefile in that file (similar to the #include syntax in C), how would I accomplish this?
4
votes
2answers
1k views
Eclipse CDT - Build sub directory within a project
i would like to know if there is an option in Eclipse (CDT) to build only part of project.
my situation is i got a very large single project which consist of many sub directories, and my build system ...
8
votes
8answers
2k views
C++, the “Old Fashioned” way
I have been learning C++ in school to create small command-line programs.
However, I have only built my projects with IDEs, including VS08 and QtCreator.
I understand the process behind building a ...
0
votes
3answers
403 views
Building my project with make
I'm working to improve the long languishing Linux build process for Bitfighter, and am having problems with make. My process is actually quite simple, and since make is (nearly) universal, I want to ...
20
votes
6answers
4k 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 ...
2
votes
1answer
961 views
Compiling on Linux and Mac OSX: Working with Xcode build and make?
I'm writing a plain C project. I'm using a Mac and I like working with Xcode and I want to use the Xcode project and build environment. I'd like to be able to build it on other platforms though. Not ...
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 ...
2
votes
4answers
561 views
Can 'make' check if mtime of a dependency is *different* between runs, not just if it's newer than target?
If foo_user.cpp depends on foo.h, then foo_user.cpp is built, and then foo.h's modification time is set to further in the past, make will not rebuild foo_user.cpp (because foo.cpp is 'newer'). I'd ...
0
votes
4answers
434 views
Distributed GNU Make for Win32
Is there a version of GNU Make, or GNU Make compatible application, which supports distributed builds on Win32?
We currently have a large project using gnu makefiles. We use the Win32 version of ...
2
votes
4answers
2k views
make: hierarchical make file
(disclaimer: I am used to scons ... I am somewhat unexperienced with make)
Context: I am using Eclipse CDT which generates makefiles.
Let's say I have a project directory 'lib' and 2 build ...
7
votes
3answers
6k views
Target-specific Variables as Prerequisites in a Makefile
I'm trying to write a GNU make Makefile which has a load of similar targets, where the build commands vary slightly between them.
I'm trying to use target-specific variables to represent these ...
5
votes
2answers
2k views
Perfect makefile
I'd like to use make to get a modular build in combination with continuous integration, automatic unit testing and multi-platform builds. Similar setups are common in Java and .NET, but I'm having a ...
0
votes
2answers
154 views
Win32 paths as targets/dependencies
Is it possible to have a GNU makefile with a target/dependent containing a win32 path name? I'm currently using the win32 3.81 version of GNU make, and it seems to have difficulties with drive ...
0
votes
2answers
578 views
Multiple rules specify the same phony dependent, dependent only executes once
I have a question regarding the GNU makefile example below:
.PHONY: $(subdirs) build x y
subdirs = a b c
build: x y
x: target=prepare
x: $(subdirs)
y: target=build
y: $(subdirs)
$(subdirs):
...
4
votes
2answers
466 views
Re-execute target when specified as dependency to multiple rules
I have the following GNU makefile:
.PHONY a b c d
a: b c
b: d
c: d
d:
echo HI
I would like the target 'd' to be run twice -- since it is specified as a dependency by both b & c. ...
2
votes
1answer
208 views
Knowing the files to be compiled when building a linux kernel
i would like to know if it's possible to know once a kernel is configured which files are going to be compiled and in what order ?
I want to know that because i'm interested in the variations of the ...
1
vote
2answers
345 views
Use sqlite to manage Makefile build flags
I build for more than two dozen targets from a source tree with usually three active branches with both production and debug builds. To date I've used a personal Makefile that defines the target ...
4
votes
2answers
1k views
Getting make to delete additional files on error
We're having some discussion lately about the way we handle .d files for dependencies in our make-based build process. The issue has been raised that sometimes the .d files can become corrupted when ...
4
votes
11answers
7k views
Good techniques to use Makefiles in VisualStudio?
I know the ideal way to build projects is without requiring IDE based project files, since it theoretically causes all sort of trouble with automation and what not. But I've yet to work on a project ...
2
votes
2answers
929 views
Will the “.target-name” targets in make files always run?
I'm new to make and makefiles, so forgive me if this is very basic.
I'm looking through some makefiles in my project and I'm seeing 2 types of targets -- targets that don't begin with a . character ...
7
votes
2answers
2k views
Makefile generators: premake vs bakefile?
For my C++ build process, I am using Bakefile, a nice little Makefile generator, which lets you specify your build targets in XML, and it can generate various Makefiles or project files from it. It ...
8
votes
1answer
5k views
Call cmake from make to create Makefiles?
I am using cmake to build my project. For UNIX, I would like to type make from my project's root directory, and have cmake invoked to create the proper Makefiles (if they don't exist yet) and then ...
3
votes
2answers
797 views
Any clever way to launch a makefile in Visual Studio only if build succeeded?
We have a makefile that is built last in our build process using Visual Studio to launch our unit tests. Unfortunately if the build fails the makefile is still processed and we have extra (annoying) ...
