Tagged Questions

Input file for the GNU build control language/tool gnumake.

learn more… | top users | synonyms

11
votes
3answers
244 views

Automake Variables to tidy up Makefile.am

I have a directory /src containing all of my source files, and /bin to store all binary after running make command. The directory is something like below: /BuildDirectory - - /src - - /bin - - ...
8
votes
8answers
3k views

List goals/targets in GNU make

I have a fairly large makefile that creates a number of targets on the fly by computing names from variables. (eg foo$(VAR) : $(PREREQS)). Is there any way that gnu make can be convinced to spit out ...
7
votes
2answers
1k views

Escaping in makefile

I'm trying to do this in a makefile and it fails horribly: M_ARCH := $(shell g++ -dumpmachine | awk '{split($1,a,"-");print a[1]}') do you know why? I guess it has to do with escaping, but what and ...
4
votes
3answers
92 views

how to write makefile to take care of changes in the header file

Actually i have a library 'cryptopp' and what i want is that when i make any change to a file and issue the make command it should take care of the changes made in any file in the source directory. ...
3
votes
1answer
362 views

Creating several precompiled header files using GNU make

I use gcc (running as g++) and GNU make. I use gcc to precompile a header file precompiled.h, creating precompiled.h.gch; the following line in a Makefile does it: # MYCCFLAGS is a list of ...
3
votes
3answers
196 views

Makefile Makeover — Almost Complete, Want Feedback

I've been heavily refactoring my makefiles, with help from Beta, Paul R, and Sjoerd (thanks guys!). Below is my STARTING product: #Nice, wonderful makefile written by Jason CC=g++ CFLAGS=-c -Wall ...
3
votes
1answer
731 views

How similar/different are gnu make, microsoft nmake and posix standard make?

How similar/different are gnu make, microsoft nmake and posix standard make? Obviously there's things like "which OS?", "which compiler?" and "which linker?", but I'm referring specifically to the ...
2
votes
2answers
59 views

Make File sensitivity on Preprocessor Definitions

I have written a make file. In the make file i have used a variable, say EXTRAFLAGS which looks like this. EXTRAFLAGS += -D _MSC_VER EXTRAFLAGS += -D BINARYINPUT EXTRAFLAGS += -D ENABLEVERSION2D2 ...
2
votes
1answer
68 views

How to check if a variable is equal to one of two values using the if/or/and functions

In a GNU makefile, I would like to set an output variable to one value (let's say "true") if an input variable is equal to one of two values and to another value ("false") when it is not. Thanks to ...
2
votes
3answers
278 views

Updating a legacy C makefile to include a C++ source file

I work in a computational biophysics lab. I am not a programmer, although I do get paid to act like one. Here's my problem: the main product of the lab is a ginormous (50+ source files) C program. I ...
2
votes
3answers
113 views

How do you implement a Makefile that remembers the last build target?

Let's say you have a Makefile with two pseudo-targets, 'all' and 'debug'. The 'debug' target is meant to build the same project as 'all', except with some different compile switches (like -ggdb, for ...
2
votes
2answers
2k views

Gnu make - how to get object files in separate subdirectory

OK this is my first question here, which may become obvious! I'm having trouble with trying to use make to place object files in a separate subdirectory, probably a very basic technique. I have tried ...
2
votes
1answer
98 views

Dependencies in Makefiles

Suppose I have a Makefile: all: $(BINARY) $(BINARY): $(OBJS) $(DEBUG_OBJS) #Link objects here $(OBJS): headers #Compile code into objects without debug option $(DEBUG_OBJS): headers ...
2
votes
1answer
204 views

making all rules depend on the Makefile itself

When I change a Makefile, its rules may have changed, so they should be reevaluated, but make doesn't seem to think so. Is there any way to say, in a Makefile, that all of its targets, no matter ...
2
votes
1answer
901 views

How to copy a directory in a Makefile?

I have a directory images/ that I want to copy to build/images/ from within a Makefile. The directory might contain multiple levels of subdirectories. What would be the most elegant way to do that? I ...
2
votes
3answers
95 views

How can invoke a shell to make a new environment to run a make inside another make?

I would like in my GNUmakefile to have a target rule that invokes a new shell and then with the clean slate of the new shell invokes a new make. What is the syntax to do this? I tried this but it ...
2
votes
1answer
915 views

Parallel building with gnumake and prerequisites

My first question (yay!) is about gnumake and parallel builds. Here's a quick example file: .PHONY: tool_1 tool_2 tool_3 tool_4 all tools all: | tools tools: | tool_2 tool_3 tool_4 tool_1: # ...
1
vote
2answers
39 views

Why is make not deleting intermediate files?

I'm having problems with GNU make 3.81 not deleting intermediate files. The issue is similar to GNU make Not Deleting Intermediate Files, but that answer doesn't solve my problem. I've distilled the ...
1
vote
2answers
57 views

Simple makefile for C/C++ targets used with arm-linux-gcc

I would like to cross-compile a simple program for ARM architecture using the arm-linux-gcc suite of compilers [arm-linux-gcc (Buildroot 2011.08) 4.3.6]. I've attempted to use a simple makefile for ...
1
vote
3answers
22 views

GNU Build Multiple Files at Once

I need to use GNU build system to compile many files at once. So far, I've only seen examples on how to compile one file at once. This is my favorite reference: ...
1
vote
1answer
26 views

Building several configurations from same source code in a single makefile

I have a small set of source code files for C. I'm trying to piece together a Makefile for them that builds several different outputs from the same set of source code. Each output is customized ...
1
vote
3answers
64 views

I need help trimming down dependencies in a makefile

I have created a makefile for the generation of a simple web page. The idea behind the makefile is this: We're compiling one web page, index.html index.html requires a stylus css main.sty that must ...
1
vote
1answer
48 views

Makefile: Use target filepath in prereq

I have the following project structure: +-Makefile +-src/ +-a/ | +-foo.py +-b/ | +-foo.py +-c/ | +-foo.py Each foo.py file is a different file with exactly the same name (ie they have ...
1
vote
0answers
45 views

sending input in a file to the terminal after running ./executable_file_name

I have two executable files : exect checker After writing ./exect in terminal it takes input from a file "input_file", it prints output to terminal. Afterwards, I redirect output to file with ...
1
vote
2answers
80 views

makefile | condition | searching file

How can I do that wish with Makefile ? if ( file exist in desktop ) do X else mkdir folderName do X platform linux
1
vote
2answers
236 views

Check if a program exists from a makefile

How can I check if a program is callable from a makefile? (That is, the program should exist in the path or otherwise be callable.) It could be used to check for which compiler is installed, for ...
1
vote
2answers
441 views

What's the difference between := and = in Makefile?

For variable assignment in Make(or Microsoft nmake), I see := and = operator. What's the difference between them?
1
vote
2answers
106 views

How do I modify the dependencies and rules of a GNU makefile target depending upon the platform (Linux vs. OS X)?

I have a (GNU) makefile with an all target that looks like this: .PHONY: all all: $(unittest++_tests_exe) $(cmockery_tests_exe) @echo Running UnitTest++ tests... @./$(unittest++_tests_exe) @echo ...
1
vote
1answer
570 views

missing separator error in a makefile when adding extra space inside foreach

THIS_MAKE := $(word $(words $(MAKEFILE_LIST)), $(MAKEFILE_LIST)) MAKER := $(MAKE) -f $(THIS_MAKE) FILE_LIST=tmp/file tmp/dir/file all: rm -rf tmp $(MAKER) copy_files copy_files: $(FILE_LIST) ...
1
vote
1answer
114 views

GNU make scope of variable

I have some makefile: $(PROGRAM_NAME): index.o @echo "linking" @echo $(index_o) //linking export index_o:=. index.o: $(MAKE) -C some_dir index.o at some_dir makefile export ...
1
vote
1answer
1k views

String comparison inside makefile

In a makefile, I'd like to define a variable specifying whether the current redhat-release is greater than 5.3. (This variable will be passed to gcc as a #define) So far I've come up with: # Find ...
1
vote
2answers
1k views

Exiting from a make file if the state of two shell variables are a certain state

So I need to make sure that if I am cross-compiling for a specific target that a shell variable is set. If the variable is not set then make should display a message and then exit. I have the ...
1
vote
2answers
338 views

Makefile and rm -f file.{ext1,ext2,ext3} issue

Could you explain me, why Makefile rule: clean: rm -f foo.{bar1,bar2,bar3} does not result in removing files: foo.bar1 foo.bar2 and foo.bar3? I believe I saw pattern like that many times in ...
1
vote
1answer
369 views

GNUStep make with a precompiled (and prefixed) .pch header from Xcode project?

I'm trying to build an Xcode project with GNUStep-make. Right now the project is very small (3 classes) however it will grow to hundreds of classes over the coming weeks so I'm trying to get ...
1
vote
4answers
940 views

How to force an error in a gnumake file

I want to detect a condition in my makefile where a tool is the wrong version and force the make to fail with an error message indicating the item is not the right version. Can anyone give an example ...
0
votes
1answer
52 views

Using target-specific variable in makefile

I have the following makefile: OUTPUTDIR = build all: v12target v13target v12target: INTDIR = v12 v12target: DoV12.avrcommontargets v13target: INTDIR = v13 v13target: DoV13.avrcommontargets ...
0
votes
1answer
55 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
1answer
74 views

Generate a list of files/objects dynamically from within makefile

I am trying to do this: From a directory, pick all the C (.c) files, generate .o and add it to my final target executable. The C files can be added or removed at anytime, so when I run make for my ...
0
votes
2answers
56 views

Makefile Hell - A noob with a bugger of an error

Apparently, this error: makefile:4: *** missing separator. Stop. is the result of not using tabs when invoking compiler commands within makefiles. Here's the problem: main.o : main.cpp mylib.h ...
0
votes
1answer
56 views

GNU Makefile and bash - escaping

In the recipe for a target, I want to generate a bash script which processes command line arguments ... however the Makefile escaping escapes me target: deps echo "./a.out \"$@\"" > ...
0
votes
2answers
142 views

Get error for “make: Nothing to be done for 'target'”

Let me illustrate it with an example. mkdir test cd test touch target make target This will result in: make: Nothing to be done for 'target'. So make tells me there is nothing to do. This is ...
0
votes
1answer
70 views

Record current target in Makefile

At present I have a Makefile with a multiple target rule. It records the target and then invokes a new Make with that target set. E.g. $(LIST_OF_PRODUCTS) : @echo Making $@ @make ...
0
votes
3answers
109 views

In Makefile, how to cleanup lockfile files?

In GNU Make 3.81, I need to remove a lockfile in the event of an error in any part of the toolchain. Is there a special target that will allow me to do this? Do I need to write a wrapper script? In ...
0
votes
1answer
245 views

library path in makefiles

guys please help me i have written a makefile like these HEADER = -I./cygdrive/c/cpros/kajj/source4 LIBB = -L./cygdrive/c/cpros/kajj/source1 -L./cygdrive/c/cpros/kajj/source2 LIBRA = -larith -ldekk ...
0
votes
1answer
163 views

Loop in Gnu make file

Can anyone please tell me the difference between for loop and foreach in makefiles? For example: for fpga in $($(NE_NAME)_$(IS_DWDM)_FPGA); do\ $(foreach fpga, $($(NE_NAME)_$(DWDM_SUFFIX)_FPGA),ln ...
0
votes
0answers
60 views

How to compile ggpo?

How do I go about actually compiling the source code at http://ggpo.net/download/ for example? I have tried running make -s -f makefile at the command prompt (and with a simple batch file) with ...
0
votes
1answer
186 views

GNU make: variables in pattern rules

How variables are expanded in pattern rules and static pattern rules? Patterns are matched using global variable values, but recipes can use target specific and pattern specific variable values. Did I ...
0
votes
2answers
318 views

How to dynamically rename an object file in a makefile

I am very very new to makefiles. The most complex task I had done before was to include new .h and and .cpp or .c in already designed makefiles. I have to port the compilation process of a project ...
0
votes
1answer
197 views

Cant build program on Objective-C using GNUstep

I'm trying to build hello world on Objective-C on Linux (Ubuntu). main.c #import <Foundation/Foundation.h> int main(void) { NSLog(@"asdasd"); return 0; } I don't think there is ...
0
votes
1answer
784 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 ...

1 2