0
votes
1answer
75 views
debugging a makefile
I have a makefile which has statements like below:
TOPICS = dmic
SRV_MODE =
ifeq "$(SRV_FLAG)" "ON"
SRV_MODE = 2
endif
vpath d%_srv.h $(CNT_PATH)
USER_PRE_TARGETS := $(foreach …
4
votes
5answers
138 views
What is currently the best build system.
A few years ago I looked into using some build system that isnt Make, and tools like CMake and SCons seemed pretty primitive. I'd like to find out if the situation has improved. So, under the …
0
votes
2answers
107 views
Recursive nmake target
When recursively invoking nmake, via the $(MAKE) macro, how can I pass on the target specified on the command line to the new instance?
So, say I execute the following from the command line:
…
1
vote
2answers
28 views
arithmetic in a Makefile
Is it possible to perform some operations on variables in a Makefile.
For instance, defining
JPI=4
JPJ=2
Is it possible to define in the same Makefile a variable JPIJ equal to the expanded value of …
0
votes
1answer
6 views
fpcmake and Makefile.fpc, where can I get some training?
I've never used any of these, but they are listed on the main Free Pascal site and I would really like to get my hands on:
Beginners guide, to get me started
Advanced guide, to help me grow
All …
1
vote
6answers
77 views
How to make two different source directories in a Makefile output to one bin directory?
I have the following Makefile to build my erlang project:
.SUFFIXES: .erl .beam .yrl
ERL_SRC := $(wildcard src/*.erl)
ERL_OBJ := $(patsubst src/%.erl,ebin/%.beam,${ERL_SRC})
all: main
main: …
0
votes
4answers
39 views
Add Jar File to Buildpath in Windows Command Line
Hi
Im quite annoyed at having to ask this but I cant get it to work. Currently I have a project with:
5 Classes in the src/ folder
2 JARS named profiles.jar and
classifier.jar in the root …
-1
votes
1answer
22 views
“Undefined Reference” Error From ld
Hi there!
This isn't as naive as the title may lead you to think.
I receive an "Undefined Reference" Error from the linker/ld for a couple of function symbols in third party shared library, that I'm …
0
votes
2answers
62 views
makefile/nmake : strip out folder bits from the file list
I have a makefile (using nmake & VC++ 2005):
CPP_OBJS = $(CPP_SOURCE:.cpp=.obj)
$(TARGET) : $(CPP_OBJS)
$(link) $(ldebug) $(lflags) /DLL \
$(LIBPATHS) \
$out:$@ $(CPP_OBJS) …
1
vote
1answer
31 views
Define make variable at rule execution time
In my GNUmakefile, I would like to have a rule that uses a temporary directory. For example:
out.tar: TMP := $(shell mktemp -d)
echo hi $(TMP)/hi.txt
tar -C $(TMP) cf $@ .
rm …
1
vote
1answer
46 views
Compiling on Linux and Mac OSX: Working with Xcode build and make?
I'm writing a plain C project. I'm using a Mac and I like working with Xcode and I want to use the Xcode project and build environment. I'd like to be able to build it on other platforms though. Not …
0
votes
3answers
52 views
Makefile rule to check svnversion result
Trying to make a makefile rule to check that svnversion gave a proper result.
Normally, it should return something like one of the following:
1023:1055M
1056
However, it can get an error like:
…
1
vote
3answers
39 views
makefile with directory tree creation suitable for parallel (-j ) build
My project needs temporary directories which are created during the build using mkdir -p similarly to this:
all: dirtree $(OBJFILES)
dirtree:
@mkdir -p $(BUILD)/temp_directory
But this approach …
1
vote
1answer
98 views
Any existing pure PHP “make” tools?
Let me elaborate on the question...
I have a custom CMS (built on codeigniter FTW) that includes many different types of modules.
Every time we have a new project come through the door, it is a …
1
vote
4answers
123 views
C++ preprocessor variable
Hi guys I'm using the SKELETON_JAR variable on my c++ code in one header. However I want to allow the user to define the place of the jar in the compile time easily. I think the easiest way to do that …
