A makefile is usually an input file for the build control language/tool make.
0
votes
1answer
43 views
trouble with makefile, no references
I've got two classes : EtatTrafic and EtatTraficTest.
This is my makefile :
#Makefile
CXX = g++
LDLIBS = -lcppunit
# a modifier en fonction des cas
OBJS = EtatTrafic.o EtatTraficTest.o
all : ...
-4
votes
0answers
67 views
collect2: ld returned 1 exit status in makefile [closed]
: undefined reference to `xmlNewDoc'
file.c:(.text+0x3b9): undefined reference to `xmlNewNode'
file.c:(.text+0x3d7): undefined reference to `xmlSetProp'
file.c:(.text+0x3f4): undefined reference to ...
-2
votes
0answers
24 views
I have created a source directory with multiple source files and i want to compile the newly created directory
" i always get an error "recipe for target main.out failed"
I have created a source directory called test and i have 2 files in it test.c and test.h and i want to compile the directory not the files ...
1
vote
1answer
32 views
Using patsubst to convert one path into another
In order to make the directory strcuture of my project a bit more organized I want to put sourcefiles for the same modules into seperate directory. All objectfiles should be put into obj directory. I ...
0
votes
0answers
75 views
How to add custom build rule in cmake?
I have a kernel source with me and now adding support for cmake as my kernel builder.
Right now I am stuck at one place. I have a assembly file written in NASM and included some c header files in it. ...
0
votes
3answers
126 views
Makefile: no rule to make target
I was looking for a solution on this site and also tried google for some time now, but somehow I can't get it to work.
My source should be in the src directory and the object files would be in the ...
0
votes
0answers
13 views
chnaging of permission of file under /etc/periodic/daily in Makefile of freeBsd
i am doing chnages of permission of file under /etc/periodic/daily in Makefile of freeBsd . How to verify that the file permission will be getting changed when this file will be created
Added 2 ...
0
votes
1answer
43 views
Library error when building a make file for a CUDA program
I am trying to build a makefile in linux. The code which goes into the makefile is as follows:
NVCC = /usr/local/cuda/bin/nvcc
CUDAPATH = /usr/local/cuda
NVCCFLAGS = -I$(CUDAPATH)/include
LFLAGS = ...
0
votes
0answers
59 views
Not understanding makefile
I'm struggling with this Makefile. It bombs out on the last line. Can't figure out what I am doing wrong. Can anyone see it? Thanks!
CC = gcc
CFLAGSFUSE = `pkg-config fuse --cflags`
...
0
votes
1answer
15 views
Expanded variable values in Makefile
I am learning some basics of Makefile, and write simple example as below:
urname=Chang
givenname=SJ
fullname=$(givenname) $(surname)
hello:
@echo $(fullname)
surname=Lin
ALL_PACKAGES=
hello1:
...
0
votes
2answers
94 views
Makefile: for loop and break on error
I have a Makefile with a for loop. The problem is that when an error occurs within the loop, the execution carry on.
SUBDIRS += $(shell ls -d */ | grep amore)
# breaks because can't write in /, ...
1
vote
2answers
51 views
Makefile target always up to date with code generation
I have a script which generates multiple C++ .h and .cpp files, based on a configuration file. This script also generates a file called 'Makefile.inc', and this file contains a variable with the ...
1
vote
1answer
36 views
Hide targets when configure is run with certain options
My configure.ac lets the user specify --enable-monitor. In a subdirectory, I have a Makefile.in which contains a certain number of targets to build. I would like some of them to be only available when ...
1
vote
1answer
48 views
R & Makefile: how to inherit dependencies?
I use a Makefile to byte-compile my R files (mostly to detect potential problems with the code). When compiling a file, I load its library requirements and loadcmp its local dependencies:
R = R ...
0
votes
0answers
22 views
Add external library reference to an already existing makefile (apache)
I am under windows and I have to compile an old 1.3.9 version of apache using visualc++ from command line (nmake to be exact).
Normal compilation is very straightforward, I just have to enter
nmake ...
0
votes
0answers
23 views
Dependency based python scripting, a la Makefile
I would like to create a dependency-based specification, with associated targets, everything written in python. This would be a similar to what Makefiles provide, but without makefile syntax and shell ...
1
vote
1answer
84 views
c++ Makefile with external h and o files
I have project files and I need to use an external test file named TestSuite1.cpp that includes an external header file SignalMasker.h (Was given it and it's object file SignalMasker.o) and my main ...
0
votes
2answers
33 views
Use makefile variables inside tcsh
I created a tcsh script, which I want to call through a Makefile environment. Therefore
I want to reference variables inside this tcsh script, which I have defined in the Makefile environment.
I tried ...
0
votes
0answers
23 views
Xcode with makefile error
i am trying to setup Xcode with makefile, using external build system. Xcode successfully executes "make all" but within the makefile there is a call to another c compiler that i need to use (SDCC). ...
0
votes
1answer
180 views
/usr/bin/ld: cannot find -lc while compiling with makefile
Context first: I have a header (event.h), a program called event.c, and the main program main.c. This program will be compiled, generating first a object program (event.o), then a static library ...
0
votes
1answer
31 views
Undefined reference error in makefile
I am having an issue with my makefile
assignment3: BSTapp.cpp BST.o
g++ -o assignment3 BSTapp.cpp BST.o
BST.o: BST.cpp BST.h Node.o
g++ -c BST.cpp -o BST.o
Node.o: Node.h Node.cpp
...
0
votes
1answer
45 views
SIP Makefile fail (gnuwin and mingw)
I have downloaded the Sip module for python 2.7, created a makefile and tried the make command on the directory with the makefile, but I get this error:
Makefile:3: recipe for target 'all' failed
...
0
votes
0answers
53 views
GDB will not step into a user defined function
I am compiling some code for leftist heaps, and I want to step through my levelorder traversal function. However, whenever I reach a breakpoint at "theheap.levelorder()" and type "step", gdb passes ...
0
votes
1answer
44 views
Using Makefile for Stroustup's book
I'm reading Stroustrup's "Programming Principles and Practice Using C++".
Trying to compile the following example in Visual Studio I get four Linker errors. But then I realize that I'm not using the ...
0
votes
0answers
71 views
Run cudamat Makefile.win on Windows 7
I used the cmd for Visual Studio 2008 and 2010 to run this make file:
cudamat: cudamat.cu cudamat.cuh cudamat_kernels.cu cudamat_kernels.cuh learn.cu learn_kernels.cu learn_kernels.cuh
nvcc -O ...
0
votes
0answers
45 views
How to include files in Theos makefile?
I made a fully functional tweak with theos and I need to use an image file
in it , the code for getting the image is correct (tested on Xcode) .
but the image isn't included in the final DEB file .
...
1
vote
2answers
98 views
How to tell the compiler to use hardware floating point instructions with ARM
I am compiling a program for ARM. The makefile has a flag -msoft-float which is telling the compiler to use software floating point emulation. My question is how can I specify in the makefile to use ...
1
vote
1answer
29 views
makefile for cppunit
this is my makefile :
#Makefile
CC=g++
CFLAGS=-lcppunit
OBJS=Money.o MoneyTest.o
all : $(OBJS)
$(CC) $(OBJS) -o TestUnitaire
#création des objets
Money.o: Money.cpp Money.hpp
$(CC) -c ...
-2
votes
1answer
34 views
Wonderful time at 4a.m. in the morning with Makefiles
CFLAGS = -Wall
libs = evento.h
main: main.c $(libs)
gcc $(CFLAGS) -o main main.c $(libs)
I have this makefile and work, the problem is that i need to make that evento.h comes from a ...
0
votes
2answers
63 views
Android NDK Build failing for simple native function
I am trying to build a very simple native function using ndk-build and getting the following error.
DriverAdapter.cpp:6:69: error: expected ',' or '...' before 'this'
The following are my .mk and ...
0
votes
1answer
128 views
Execute complex shell command from makefile
I have the following command line that works from the Linux command prompt:
vi /tmp/test.txt -s <( echo ":1 s/^\/\/ VERSION: .*$/\/\/VERSION: $(date)/g" )
It creates a temporary file (using ...
0
votes
1answer
106 views
If conditions in a Makefile, inside a target
I'm trying to setup a Makefile that will search and copy some files (if-else condition) and I can't figure out what exactly is wrong with it? (thou I'm pretty sure it's because a combination of ...
0
votes
1answer
52 views
-g option ignored when building c++ programs with “make”
Unfortunately I can't remember when this first occurred, but recently I've noticed a strange bug when I run "make" to build a program.
The I have the following makefile:
SOURCE = Foo.cpp \
...
0
votes
1answer
19 views
Using make to pack files in directory
In existing project I am packing files using make.
I am trying to rewrite make, so it does not have to clear everything on every my change. I have targets like this:
device1pack1.pack: ...
2
votes
1answer
89 views
makefile: cpp + cu files - error of undefined reference
Consider three files: main.cpp, func_prototypes.h and test_kernels.cu. I'd like to build a project out from those three files. I tried to base on CUDA samples to construct a 'makefile', but I fail. ...
0
votes
0answers
19 views
Dynamic library not linking on ubuntu
I am using following makefile
SHELL = /bin/sh
CXXFLAGS += -fPIC
TARGET = product_bridge.so
MYPRODUCT = /tmp/product
JAVASDK = /x86.linux/include/
CXXFLAGS += -I$(JAVASDK) -I$(JAVASDK)/linux ...
0
votes
1answer
62 views
make: Nothing to be done for first.pdf
I'm a newbie to linux and make, I've written a makefile to automatically compile the .tex file to .pdf. But when i call make, it said "Nothing to be done for 'first.pdf'", here's my makefile:
...
0
votes
2answers
37 views
Why does this makefile not work?
I'm new to Makefiles and I'm trying to write a simple one that would compile and link all applications listed in a variable like that:
APPLICATIONS = app1 app2 app3
All of them must have a source ...
0
votes
1answer
29 views
Simple Makefile not taking include path
following is my makefile. but It is not taking include path during build.
SHELL = /bin/sh
CC = g++
FLAGS =
CFLAGS = -fPIC
TARGET = my_bridge.so
INC=-I/my_custom_path/include/ ...
0
votes
2answers
61 views
Compile from command line with Visual C++ [duplicate]
I want to avoid the hassle of creating and building a project in Visual Studio to compile my program. I just want a Makefile, like you do with gcc for example, so that I can compile my program from ...
1
vote
1answer
106 views
What does (set PATH=…;%PATH:)=^)%) mean in a Windows shell script, and how can I overcome failure of this line in the context of a Qt5 nmake build?
In the context of an obstacle-ridden process of attempting to build Qt5 (32-bit) with VS 2012, I have run into yet another build error.
It is:
(set ...
0
votes
1answer
29 views
how to generate two .so file in a single android.mk file
I'd like to create two .so file within a single .mk file. But the following codes fails because there should not be a space in LOCAL_MODULE. So is there a way out?
LOCAL_PATH := $(call my-dir)
...
0
votes
1answer
50 views
Makefile won't create and copy file
I have the below code for a Makefile. If I run "make" in the command line it creates the xpi file. But when I run the "make install" command it says "Installing in profile folder. Done!" but there is ...
1
vote
2answers
94 views
Directory wildcard in Makefile pattern rule
I'm trying to create a Makefile that will compile terminfo files residing in a directory via tic. tic also copies the termcap files it creates automatically to a system- or user-specific destination ...
0
votes
1answer
63 views
how to install lprotobuf-c in ubuntu for c language
/usr/bin/ld: cannot find -lprotobuf-c
collect2: ld returned 1 exit status
make: *** [test_apl] Error 1
These are the errors I'm getting.
I have installed apt-get install protobuf-c-compiler, but ...
0
votes
2answers
50 views
Quick help in rebuilding an automake project
I got the source code of a project (which I can't reach the author any more), that uses automake. I'm not familiar with system and all I want to do is rebuild the project.
I have the following files ...
0
votes
1answer
28 views
Makefile: Get filename component of the most recently updated file
Can I reference the filename component of the last updated file, in a list of file. Not the file extension component? How could one go about this?
I have a Makefile which lists a number of files. ...
0
votes
1answer
50 views
mingw32-make tries to create subfolder .lib an illegal name
I am trying to compile a project that required freetype library so I was figuring out how to install freetype to mingw32 and the more safer way is to compile it.
Anyway the problem was compiling ...
0
votes
1answer
118 views
Cmake and make, error compiling scribus
I'm finding always an error while trying to compile Scribus 1.5 svn. I tried with both Qt4 and Qt5 but the error doesn't seems to rely on them.
This is the cmake output:
cmake ...
0
votes
2answers
87 views
Java cannot create a file - Linux
When I create a file in Ubuntu using a Java program I get this error:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at actions.create.actionPerformed(create.java:18)
...

