0
votes
1answer
23 views

GNU Make: sed doesn't work when piped inside of $(shell)

Here is my experimental Makefile. .SECONDEXPANSION: ~/hello.txt: $(shell echo '$$(@D)/')$(shell echo '$$(@F)' | sed -e 's/hello/bye/') echo "$^" Somehow the sed command doesn't work, and Make ...
0
votes
1answer
66 views

How can I get my makefile to compile/link older and newer GCC/GNU libraries? C++

I have GNU 4.7.1 as the default on my MacBook. I keep getting tons of segfaults when I run my program on my school's server. I downloaded the current state of my program from my schools server so that ...
0
votes
0answers
88 views

Brew install not working - Configures but make install fails to execute

I have tried using both brew and rvm install to install ruby 1.9.2 Both result in the same error: ==> Installing ruby-build dependency: autoconf ==> Downloading ...
2
votes
2answers
101 views

compile headers dependencies with makefile

Iam programming UDP client server applicaion in c programming language ,so i want to make 2 sources files and 3 header files,so i decide to use make utlity . the makefile called "edit" : edit : ...
0
votes
2answers
70 views

Compile any C Program using just “make” (From a Makefile)

I'm learning C Programming through "Learn C the Hard Way." I am currently (for quite a long time) on Exercise 2, which can be found here: http://c.learncodethehardway.org/book/ex2.html In the extra ...
0
votes
1answer
55 views

Get include tree of GNU makefiles

In an existing GNU Make build system, I'd like to see a tree of the makefile includes. How may I do this? Like Do you know tool building tree of include files in project\file? but for GNU Make ...
0
votes
3answers
65 views

How to strip parameters from a variable in a makefile

Below is a variable I am using in a makefile. copt = -mcpu=cortex-m3 -mthumb -g -c I want to remove -mthumb and replace it with some other option. Is there any way I can strip the option and add few ...
1
vote
2answers
960 views

Testing if a file exists in makefile target, and quitting if not present

Is there a way to exit with an error condition if a file does not exist? I am currently doing something like this: all: foo foo: test -s /opt/local/bin/gsort || echo "GNU sort does not exist! ...
1
vote
0answers
132 views

GNUsetup objective-c undefined reference to `htmlReadMemory' linking with libxml2

i trying to link libxml2 with my simple objective-c in windows , i have the lib and the headers in place . my GNUmakefile looks like this : include $(GNUSTEP_MAKEFILES)/common.make TOOL_NAME = ...
1
vote
2answers
67 views

is there a way to ONLY compile POSIX API

I am developing a system that must be fully POSIX compatible I am developing this on Fedora Core 14 with gcc and c++ I do not want to use anything that is not POSIX How do I ensure I maintain this? ...
0
votes
1answer
78 views

make, variables depend on target

Makefile abc: TEST=$@ /* TEST=abc */ def: TEST=$@ /* TEST=def */ xxx: @echo $(TEST) If I run make abc xxx, I expect output abc. If I run make def xxx, I expect output def. But it ...
-1
votes
1answer
91 views

Linux Makefile - CXX is not defined [duplicate]

Possible Duplicate: Where does the value of CXX in a makefile come from? I'm currently working on a makefile of a legacy project. The project build successfully with the Makefile. While ...
1
vote
1answer
156 views

Reading a file inside makefile

I want to read a file called metafile inside a makefile. metafile looks something like this: file1 file2 file3 I need to read this metafile inside my makefile line by line and check if the ...
1
vote
0answers
83 views

Trec_Eval Makefile

I'm attempting to install Trec_Eval simply by running the make file. From the CMD I get the error after the CreateProcess: make (e=2): The system cannot find the file specified. make: *** ...
0
votes
1answer
118 views

.PHONY in linux makefile

SUBDIRS = foo bar baz .PHONY: dirs $(SUBDIRS) dirs: $(SUBDIRS) $(SUBDIRS): @echo $@ @ls $@ Anybody can just help me out to understand this make-file? If possible explain me each statement (why ...
0
votes
3answers
88 views

Dependencies in Makefile not properly taken into account

I have some limited knowledge of GNU makefile that has failed me at the moment. I have a class declaration file: mdfTree.h, an implementation of the class mdfTree.cpp, and a mdfTree_x.cpp file with a ...
1
vote
1answer
320 views

How to compile sqlite3.c in Fedora?

I'm having trouble building the sqlite3 amalgamation the same way I used to do it in windows, by compiling the source right into my program, here is my current makefile all: gcc -g -c sqlite3.c ...
0
votes
3answers
248 views

Updating source files to different folder using makefile in Linux

I have a Linux GNU C project that requires building output for two different hardware devices, using a common C source code base, but different makefiles. Presently I have two makefiles in the same ...
0
votes
2answers
85 views

gnu make recipe / target written with % not working

Using GNU Make 3.81 The error I'm getting is: make: No rule to make target "unittest/build/inMessages.o", needed by "unittest/build/xlineunittestrunner". Stop. I have the target written in the ...
0
votes
3answers
1k views

Linker input file unused c++ g++ make file

I am unable to figure out what is causing this error that I keep getting upon making my project: i686-apple-darwin11-llvm-g++-4.2: -lncurses: linker input file unused because linking not done And ...
1
vote
2answers
100 views

Bizarre behavior observed in make 3.81 when attempting to use a reassigned variable as a dependancy

I'm running into a bizarre problem with a C++ makefile. I rewrote it this afternoon because the old one I was using made me want to kill myself, and I'm running into a weird problem regarding ...
0
votes
1answer
121 views

conditional check against list of strings in GNU makefile command

I am trying to check a file against a list before I try to compile it in a GNU makefile. Will the conditional ifneq below be evaluated every time the rule is invoked or just once? The condition seems ...
0
votes
2answers
33 views

makefile, how do I make reference to the content of a variable?

For example, I have a variable $(modules), and this variable contains a list (string separated by spaces) of objects, like "Modules = obj1 obj2..." so on. Each of the obj in the modules also ...
0
votes
1answer
70 views

makefile, what is the diff between obj_$(variable) and $(addprefix “obj_”, $(variable))

As the title, in makefile GNU, what is the diff between obj_$(variable) and $(addprefix "obj_", $(variable)). I am sure there is the difference, because the first one can be compared to a string, and ...
0
votes
1answer
114 views

GNU MAKE - create getoptpp library from my own Makefile or suggest command line options library for c++

Describe how to compile "getoptpp" as shaded library from my own GNU Makefile and static link it to my program? What I do: At my program directory I unarchived getoptpp library to subdirectory with ...
0
votes
2answers
701 views

How to force revaluation of variables in makefile

I have a makefile which runs a binary to generate the cpp files. I then compile the cpp files and generate .o files for each cpp file. The problem is when the makefile is first invoked, the folder is ...
1
vote
2answers
219 views

GNU Makefile macro rules

In GNU Makfiles can there be leading whitespace before a macro definition? and what type of whitespace is allowed (tabs, newlines, space...) thanks!
0
votes
1answer
82 views

How to handle different targets for same directories in parallel making

The question is about parallel making w/ GNU makefile. Given a folder structure as below, the goal is to deliver a makefile that it supports make release/debug/clean in parallel. project folder ...
2
votes
2answers
2k views

GNU Make for loop with two variables

I want to write something along these lines: $(foreach (var1, var2), ($(LIST1), $(LIST2)), cp $(var1) $(var2);) How do I go about doing this in a GNU makefile?
1
vote
2answers
112 views

Makefile using a library

I have made a project in Xcode who implements an algorithm in just 1 c++ file. To compile it needs an library who is in a directory called libgambit in an other directory. The directory structure ...
0
votes
2answers
125 views

GNU Make Including source files from target-specific variables

I tried to build two programs with one GNU Makefile by either make prog1 or make prog2. I tried to use target-specific variables to specify the source files that are exclusive to the target but ...
2
votes
1answer
294 views

make & gmake compatible if else statment

Is there any type of if/else statemant compatible with GNU make and Berkley make (freeBSD) ? GNU MAKE: ifeq ($(BUILD_TYPE), debug) berkley make: .ifdef (BUILD_TYPE)
3
votes
4answers
1k views

Makefile (Auto-Dependency Generation)

just for quick terminology: #basic makefile rule target: dependencies recepie The Problem: I want to generate the dependencies automatically. For example, I am hoping to turn this: #one ...
0
votes
3answers
268 views

What is the escape character for '=' symbol in GNU make?

I want to call a makefile by passing the environment variable CPU_TYPE and its value -mcpu=603 as command line argument to that makefile. I am entering the below command make -f make_file ...
0
votes
1answer
237 views

Is it possible to have case insensitive targets with GNU make?

Is it possible to design a makefile so that make program_name produces the same result as make PROGRAM_NAME ? I know I can do the following in the makefile program_name : PROGRAM_NAME but ...
0
votes
2answers
108 views

Makefile beginner help

I am trying to learn Makefiles. I have done some small project that works but now im extending it but getting no luck. Here is the question. I am trying to compile all the files from subdirs and then ...
3
votes
2answers
1k views

Makefiles and wildcards

Alright so this is my current setup for a makefile. There are files which are named public01.c, public02.c, etc. I'm trying to make object files for each of them using the public*.o label with a ...
5
votes
2answers
4k views

How to Use of Multiple condition in 'ifeq' statement

Hi I would like to check multiple condition in an if loop of Gnu make file . My script is given below #ifeq ($(TEST_FLAG),TRUE && ($(DEBUG_FLAG),FALSE)) true statement else false ...
1
vote
1answer
553 views

Makefile collect list of files in a new directory

I have a list of file paths in a variable. I'd like to copy each file in this list to a new location. The problem is that I'm very new to makefiles and I'm struggling to get anything working. My ...
0
votes
2answers
415 views

cp Command Giving Error in Make file

HI while executing the below make file code i'm getting an error saying that , Signing File 3E0022__.FPG cp: missing destination file ******Error during cp command Try `cp --help' for more ...
3
votes
2answers
423 views

GNU Makefile equivalent of shell 'TRAP' command for concise identification of build failure on exit

Criteria: Makefile is a GNU Make Makefile - I'm not interested in makepp, qmake, cmake, etc. They're all nice (especially cmake), but this is for work and at work we use GNU Make. The optimal solution ...
0
votes
0answers
57 views

pthreads in cywgin

can anyone tell me how to create a thread i've written a code but its aint working. its executing the whole function and then executing the main function but its not doing it parallelly. my code is ...
0
votes
1answer
1k views

How can I compile a .pbxproj project through a makefile

I've downloaded some source code from Apple open source repository. The projects are .pbxproj files which I can open in XCode. But I need to export the project to a Makefile/Configure configuration. ...
1
vote
1answer
192 views

Makefile design for arbitrary structure

I have my code organized into an arbitrary directory structure. For example, I have a directory containing source files, header files, other directories, each containing other sources and headers and ...
1
vote
2answers
56 views

Is my understanding of MAKE correct?

Taking the GNU make application as an example, when I create a makefile it is likened to a Visual Studio project file in that it contains the list of files and other items needed to compile an ...
2
votes
1answer
125 views

what is gendep?

what is gendep? it builds dependencies, how? any good book to read about this entire gnu make gamut?
1
vote
1answer
1k views

makefile loop variable

I have the following in the makefile: RESULT=ab nums: number=1 ; while [[ $$number -le $(DIRS_NUM) ]] ; do \ now=`echo $(CURR_DIR) | cut -d "/" -f 1-$$number` ;\ **RESULT = ...
1
vote
1answer
163 views

Makefile, option to compile all “examples” in directory?

I have seen this done in various installers, although unfortunately I cannot actually find much on how to do this or remember which programs had this feature so I can learn it from them. I ...
0
votes
2answers
378 views

makefile which build the library (lib.a)from the list of object files (*.o)

I have a problem because i have never written any makefile. So if any could help me I become happy. I have a lot of different .o files, which stored in the different folders. For example: folder1: ...
1
vote
1answer
613 views

How do I compile this plugin?

I'm following the foo dissector example but would like to know how to compile it. The foo dissector example is shown in this link: http://www.wireshark.org/docs/wsdg_html_chunked/ChDissectAdd.html ...

1 2