0
votes
1answer
35 views
+100
Netbeans re produce Makefile when change options in c/c++ developing
I create new c/c++ project in Netbeans and change Makefile and add -lpthread for work with pthread and run my project .also I need to add some runtime argument from project properties/Run/Arguments . …
2
votes
4answers
77 views
How does make know which files to update
I noticed that when I make changes to some files and then I type make, it will run certain commands related to those files. If I don't change anything, then make doesn't do anything, saying that the …
0
votes
2answers
33 views
how to export headers using Qt pro files
I've a project with following files
TestProject/api/apiheader1.h
TestProject/api/apiheader2.h
TestProject/src/apiimplementaton.cpp
TestProject/inc/apiimplementation.h
TestProject/TestProject.pro
…
0
votes
2answers
36 views
Build system for a highly modular portable open source project
We have an Open Source software project in the very beginning. The program is thought to be highly modular: for example, the underlying database can be either sqlite, postgre, or berkley, depending on …
1
vote
4answers
92 views
Does the Visual Studio C compiler have an equivalent to GCC’s -M?
I would like to automatically generate a Makefile dependency list, but I am using Visual Studio 2005. If I were using GCC, I could pass -M (or one of the many variants) to create this dependency …
0
votes
2answers
54 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
1
vote
1answer
39 views
CMake: How to generate different shared library names depending on build type
This is my first time using CMake and I'm trying to build QJSon, a JSON parser for Qt 4.x. What I want basically is to build different output library names depending on the build configuration. I'm …
0
votes
3answers
90 views
what’s wrong with my makefile?
I have this project that that I compile with the following command:
g++ ALE.cpp -lncurses
This gives me a.out file. I have the following Makefile but it seems to not be edited correctly.
HEADERS = …
4
votes
2answers
78 views
What is the reasoning behind the Makefile whitespace syntax?
G'day,
I'm revisiting Python after Michael Sparks's excellent walkthrough of Peter Norvig's Python spell checker at the SO DevDay in London.
One of the points he highlighted was how clean Python is …
0
votes
1answer
31 views
makefile: how to show line numbers for debugging?
Is there a way to have make display the line number where it declares an error? The -d switch doesn't seem to cut it.
Updated: Example output:
Reaping winning child 0x08aa8648 PID 9381
/bin/sh: …
4
votes
2answers
84 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 …
0
votes
0answers
40 views
Which open-source project can be used a ‘showcase’ for mid-size project MAKEFILE management?
hi, guys
now i need to design/organize the source-code structure and makefiles for the next project. This is a software implemented largely by C++ and supposed to be used normally on Linux. It will …
2
votes
1answer
26 views
make: is there a way to wrap a command shell section?
In a makefile, is there a way to "wrap" a section of shell commands in order to save on the line continuation \ all the time?
updated: my main area of concern revolves around stuff like nested if …
0
votes
2answers
37 views
compiler directive for compiling on different platforms
Hello,
I am compiling a demo project.
The project is written for windows and linux. I have written a Makefile. However, I am not sure how to specify the platform the compiler will be compiling on.
…
1
vote
9answers
201 views
Invoking makefile in the project root directory from subdirectory Emacs - C++
I have a makefile in the project root directory. If I am editing a file in a subdirectory, how do I invoke make from EMACS? M-x compile make will not work as it looks for the makefile in the current …
