-1
votes
1answer
19 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
4answers
38 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
vote
1answer
30 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
42 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
1answer
4 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
1answer
95 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
3answers
38 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
6answers
75 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: …
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 …
0
votes
3answers
91 views
Where does the -DNDEBUG normally come from?
Hi,
Our build system has somehow changed such that optimized builds are no longer getting the -DNDEBUG added to the compile line. I searched our makefiles and don't find this.
So the question is, …
1
vote
3answers
44 views
How to conditionalize a makefile based upon grep results?
I'm looking for a way to bail out of a makefile if a certain string is not found when checking the version of a tool.
The grep expression I'm looking to match is:
dplus -VV | grep 'build date and …
0
votes
3answers
51 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:
…
0
votes
2answers
59 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) …
0
votes
1answer
32 views
Tricky makefile syntax with quotes
Hello,
I have the following start on a makefile rule (thanks to help from others), but it doesn't quite work yet:
test_svn_version:
@if [ $$(svn --version --quiet \
perl -ne …
0
votes
5answers
87 views
How to create a .py file for Google App Engine?
Hello everybody!!!
I am just at the very start of what I think is gonna be a long journey exploring the world of applications in Google App Engine using Python.
I have just downloaded Python 2.6.4 …
