Tagged Questions

0
votes
3answers
42 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 c …
0
votes
0answers
25 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 …
1
vote
1answer
12 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 c …
0
votes
1answer
25 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 PI …
2
votes
1answer
22 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 stuf …
4
votes
2answers
59 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 …
4
votes
2answers
75 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 …
0
votes
2answers
34 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 wil …
2
votes
4answers
69 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 …
1
vote
9answers
173 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 makef …
2
votes
3answers
67 views

Parallelization of recursive jobs in GNU make

Hi, 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 …
1
vote
3answers
46 views

Using make to generate bison grammar

In a project that uses make and bison, I'm having difficulty specifying that the compiled grammar grammar.tab.c depends on the grammar input grammar.y, that each object file depend …
0
votes
2answers
204 views

How should a very simple Makefile look like for Cuda compiling under linux

Hi, I want to compile a very basic hello world level Cuda program under Linux. I have three files: the kernel: helloWorld.cu main method: helloWorld.cpp common header: helloWo …
1
vote
1answer
41 views

No rule to make target … libm.a

I get the following error when I try to compile my app: *** No rule to make target `/mypath/lib/libm.a', needed by `/myPath/bin/appName' Why is the linker looking for libm.a ac …
1
vote
1answer
29 views

Windows Makefile and Setting Environment Variable

My Product is built using cygwin on Windows. but Windows Tools does not understand cygwin path like /home/lib/ How do I set those variables during runtime , like can I set environm …

1 2 3 4 5 20 next
15 30 50 per page