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 …
3
votes
3answers
36 views
/bin/sh invoked from make doesn’t find command with unquoted dash-argument
I have a makefile to build some transducers using Xerox' finite state tools (xfst in this case), which I invoke in my makefile like so (except with a hard tab instead of spaces in …
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 …
2
votes
7answers
200 views
Is a makefile basically the same thing as a batch file?
I know all about batch files and made them before, but I'm unclear on what a makefile is. It looks like a batch file. What are the similarities and diffferences?
1
vote
4answers
63 views
What’s wrong with this Makefile?
When I run make all on the following Makefile I get this error:
Makefile:5: *** missing separator. Stop.
What's wrong with it and how do I fix it?
LEX = lex
YACC = yacc
CC = g …
2
votes
3answers
57 views
Debugging gnu make
Is there a command line way in make to find out which of the prerequisites of a target is not update?
Thanks.
0
votes
2answers
18 views
Is it possible to compile ImageMagick with custom libxml2 on the Mac
It always seems to pick up the version from /usr/lib and there doesn't seem to be a ./configure parameter to override it.
./configure --prefix=$PREFIX --with-quantum-depth=8 --dis …
0
votes
1answer
39 views
Makefiles: Get .cpp from one directory and put the compiled .o in another directory
Hi.
I'm working on a cross-platform 2D engine for mobile devices (Windows Mobile 6 and Android). My Windows version is pretty much ready, but I still need to make sure the same fu …
0
votes
1answer
24 views
How to add an all rule to this Makefile?
I want to just type 'make all' and have the following Makefile do everything it's supposed to do:
LEX = lex
YACC = yacc
CC = gcc
calcu: y.tab.o lex.yy.o
$(CC) -o calcu y.tab. …
1
vote
3answers
52 views
what does “make check” do?
I wonder in the installation process of configure, make, make check and make install, what does "make check" do? Thanks!
0
votes
2answers
17 views
directory for files generated by make during installation from configure, make and make install
Just assume we are installing some libraries from its source distributed by the way GNU promoted. When using "./configure --prefix" to specify where to install.
(1) does make gen …
2
votes
2answers
76 views
Using extern in C doesn’t work as expected
Hi, I have created two files:
tunables.h
#ifndef TUNABLES_H
#define TUNABLES_H
void tunables_load_conservative();
void tunables_load_aggressive();
extern int timer_x;
#endif /* …
1
vote
1answer
32 views
How do you install gnu MAKE without compiler [closed]
I'm a little new in this area. I have a virtual machine centos5.1 that doesn't come with make or any compiler... basically stripped down. It doesn't come with any install packages …
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 …
