Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
248 views

Makefiles, “configure” files, and other compilation tools — How do they work? Why do they work the way they do?

I'm still new to the UNIX/Linux world, and, in particular, to related tools, such as the GCC compiler. Namely, I'm still new to makefiles and things like that (I use MinGW on Windows), since so far, ...
4
votes
1answer
2k views

QtCreator importing makefile projects

have You ever tried to import classic c++/make project into QtCreator ? Lets say I wanted to use in my gui project some library that needs to be build. How can I do this ? Thx.
3
votes
2answers
116 views

Is there a Make debugger? I need to figure out someone else's makefile

I need to add some capabilities to very complex, multi-layered makefile (lots of include files, lots of targets, lots of variables) that was written by someone else who of course is no longer with the ...
2
votes
1answer
62 views

Check if a makefile exists before including it

I have a makefile that includes a Rules.mak file that holds includes to tools I want to use. Problem is that the tools folder has free options if they want to extract a version or use the "native" ...
1
vote
0answers
147 views

Makefile-based Eclipse CDT with run/debug launch configuration depend on release/debug build configuration

I have a Makefile that based on given target (all/debug) generates executable in release/debug directories on the project folder. I have setup the Eclipse-CDT C/C++ build behavior mechanism to ...
1
vote
2answers
49 views

Automatically make files with Gnu Make utility with different build structure than source

I've seen the following technique used to automatically compile all of the C (or C++, or I suppose whatever extension you wanted) files in a particular directory. SOURCE_DIRS = . SOURCES := $(subst ...
1
vote
2answers
418 views

Debugging a makefile step by step

I want to debug a makefile . I came across many posts in Stackoverflow but still need some help . INCLUDEPATHS=/I"/C:/wxWidgetsDev/lib/vc_lib/mswd" /I"/C:/wxWidgetsDev/include/msvc/" ...
1
vote
1answer
1k views

Eclipse c++ makefile project output

I have a c++ Makefileproject for eclipse, if I build it, the binary is in the project root. How can I change the build directory to {ROOT}/bin? I Tryed project propertys -> c/c++ Build -> Build ...
0
votes
1answer
69 views

Problems with directories making a simple makefile

I want to make a simple makefile for a C project that have the following directories. -Project - src - a.c - b.c - main.c - headers - a.h - b.h - ...
0
votes
2answers
434 views

Need Help w/ Annoying Makefile Errors — g++: g++ and shell errors — and Multi-Makefile Design Advice

I have a makefile: #Nice, wonderful makefile written by Jason CC=g++ CFLAGS=-c -Wall BASE_DIR:=. SOURCE_DIR:=$(BASE_DIR)/source BUILD_DIR:=$(BASE_DIR)/build TEST_DIR:=$(BASE_DIR)/build/tests ...