A makefile is usually an input file for the build control language/tool make.
1
vote
1answer
24 views
Makefile target with makefile as dependency
I am currently working on a project where I have a couple applications in a parent folder that need to be rebuilt whenever the libraries contained in child folders are updated. The apps in the parent ...
0
votes
4answers
65 views
Weird error “ multiple definition of `xxx` ” while compiling C++ project
When I try to compile my C++ project via my Makefile I keep getting errors like those:
Server.o: In function `Bot::getRandomMessage()':
...
1
vote
1answer
20 views
Portable way of depending on the generator program in a Makefile pattern rule
I have a src/apps/myapp/myapp program that I am building as part of automake rules, which is working correctly.
I am then using this in a Makefile rule to generate a HTML file, e.g.:
.src.html: ...
1
vote
2answers
73 views
whats wrong with my makefile?
I am trying to run the make as below. It is throwing an error saying
Makefile:1: * multiple target patterns. Stop.
Where am I going wrong?
listtest: listtest.o my402list.o
gcc -o listtest ...
0
votes
1answer
18 views
Makefile allegro-nasm
Hi i have to write a code where i'll be combining NASM (assembly) with C and allegro library
CC = gcc
OBJ = main.o func.o
BIN = program
CFLAGS = -m32
$(BIN): $(OBJ)
$(CC) $(OBJ) $(CFLAGS) -o ...
0
votes
1answer
29 views
How to link with linux/gpio.h?
I want to compile following c file:
#include <stdio.h>
#include <stdlib.h>
#include <../deps/linux/gpio.h>
int main(void) {
int r = gpio_is_valid(31);
if (r == -1) {
...
0
votes
1answer
16 views
a funky Makefile …what does “cp $^ $@” do?
the larger problem is that gdb can't find any symbols when I run it on a fortan95 code compiled using gfortran I set FFLAGS to include -g but this is a VERY FUNKY makefile (I think it creates auxilary ...
0
votes
1answer
18 views
assigning makefile variables from command line
when i want to pass variables to a make file from command line,I do something like this:
make Variable="bla bla"
but what if I want to add to a variable??
I tried this :
make Variable+="bla bla"
...
1
vote
1answer
65 views
bash: cannot execute binary file
I am trying to get compile some C code from within Cygwin on 64-bit Windows and call the executable using some parameters. The compilation goes through fine (the Makefile is below). But when I run the ...
0
votes
1answer
20 views
How could I wrap a string around each file, plus include the file name, with make?
I'm not too familiar with makefiles, and the manual confuses me to no end. I've got a situation where I need to wrap text around each file in a directory, and put the filename into the file as well.
...
1
vote
2answers
20 views
Could not find or load main class using makefile
I searched the suggested answers, but i failed to find working answer for me.
Makefile compiles everything with any error, but while trying to execute my java program I get error Could not find main ...
0
votes
1answer
14 views
error in gcc -D option with strings
I'm using a shell that calls a makefile to recompile the same project with different #define options.
the shell calls the makefile like this:
make UserDefined="-D SomeDefines -D ...
0
votes
0answers
8 views
VC makeFile 64bit
I'm having problem with this make file. It runs but objects are not for 64bit.
CINC = "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include"
CC = cl
CFLAGS = /O2 /c /Zp8 /GR
OFLAGS = /Fo
...
1
vote
2answers
37 views
Difference between “include” and “-include” in a makefile
In a makefile, what is the difference in meaning between include and -include?
Examples:
-include $(APPINCLUDES)
include $(CONTIKI)/platform/$(TARGET)/Makefile.$(TARGET)
The code is compiled with ...
0
votes
1answer
20 views
Makefile rule using variable name
I'm trying to write a makefile to build a release or debug version of my program using the same makefile (the version selection will be based on env. variable).
My first try was the following:
PROG ...
0
votes
1answer
26 views
Makefile: Linking .*a library
DESCRIPTION:
I have a library libshell.a, inside of it is the function ord_interna that i'm attempting to use, however it seems i linked it wrong, could you guys fix my error, so i dont make it in the ...
-1
votes
1answer
40 views
Automatic dependency resolution using GNU Makefile
I'm writing a piece of software that utilizes a Makefile for compilation, originally I had a rule setup for each file however this proved to be too cumbersome whenever I added a new file. To try and ...
2
votes
1answer
13 views
Not able to generate executable using makefile
I am trying to clean and make the executable using makefile, but I get the following error when I try to do the same.
Makefile:70: * missing separator (did you mean TAB instead of 8 spaces?). Stop.
...
0
votes
1answer
25 views
Syntax for assigning variable in makefile via $(if …)
The following lines in a Makefile show, via the output of the echo, that the various syntaxs that were tried for the assignment of $(if ... ) are all incorrect (the three variants of $(if...) shown ...
0
votes
1answer
31 views
How do I use SPHINXOPTS to trigger the “only” directive when invoking Sphinx with a Makefile?
I am generating a PDF via Sphinx using the autogenerated Makefile. I usually generate it using:
make latexpdf
However, I am now including the only directive, so that some sections appear ...
0
votes
2answers
31 views
Modify Makefile to generate assembly
I want to modify a Makefile to generate the corresponding assembly instructions. The Makefile and the code repository is located here:
https://github.com/swetland/omap4boot
However, adding -S to ...
0
votes
1answer
26 views
Multiple line text save to file with Makefile
I want to save multiple line text to a file with GNU Make(Makefile). But it give me error. I want to make a virtual host configuration file with this script. $$dir will be the name given by user.Help ...
0
votes
1answer
16 views
parallel make: two targets depend on the same prerequisite, what happens?
I need to build sources to binary file and two a static library.
Here is an example (I replaced recipes with ';' for brevity):
objects := a.o b.o ...
.PHONY: all build build_lib
all: build build_lib
...
0
votes
1answer
21 views
Trim an environmental variable in makefile
I maintain a project which provides makefile for Arduino
There is a master (common) makefile and the users create a small makefile where they set certain environmental variables and then include the ...
-2
votes
0answers
44 views
/usr/bin/ld: cannot find -lboost_system
I've been trying to include the boost library for a while now but I can't seem to compile it.
Here's my makefile:
all: clear gui
clear:
clear
gui:
g++ gui.cpp -o ucs `pkg-config --cflags ...
0
votes
0answers
24 views
how do i add a machine-$(CONFIG_FOO_BAR) for my board info file?
I see that in the directory kernel/arch/arm there are a lot of board files, which I am using as reference for my i2c driver. I have the following code in a directory I made called ./mach-foo and I ...
-2
votes
1answer
70 views
command not found in C++ Makefile [closed]
This is my C++ Makefile i run on my UNIX :
# This is a Makefile for the SocNetwork project
CCC = g++
CXXFLAGS = -Wall -g
CXXLINK = $(CCC)
OBJS = Message.o Date.o main.o SocialNetwork.o User.o
RM ...
0
votes
2answers
50 views
c++ linking and compiling flags
I may have a stupid question but as no question is stupid i'll ask it... let's imagine i have the files matrix.hpp and matrix.cpp. In those files i use assert(...) to make sure that some condition is ...
1
vote
2answers
60 views
makefile:4: *** missing separator. Stop
This is my makefile:
all:ll
ll:ll.c
gcc -c -Wall -Werror -02 c.c ll.c -o ll $@ $<
clean :
\rm -fr ll
When I try to make clean or make make, I get this error:
:makefile:4: *** ...
0
votes
1answer
16 views
undefined reference to `XMoveWindow'
I am trying to recompile latest yeahconsole linux package on Ubuntu 12.04 32bit, but I am not so familiar with how to work with X-server in such situations, I have done 'apt-get build-dep ...
0
votes
1answer
38 views
Can't run program after putting the compiled file to the folder
In my Makefile I'm trying to specify, that I want to save the compiled executable file to /dvoram64/ folder. Before, when I tried to save it diretly to / everything worked all right, but now I get ...
0
votes
1answer
19 views
Makefile dynamic rules based on a file
I have a number of binary files (images, etc.). I need to copy some of them to an output directory as part of my build process.
The list of files that need to be copied is based on some rather ...
0
votes
1answer
15 views
Makefile: Compiling from directory to another directory
I am trying to use Makefile to compile a bunch of .cpp files located in src/code/*.cpp, then compile each *.o in build/, and finally generate Prog with those in build/ as well.
I have read a couple ...
0
votes
1answer
38 views
Writing your Own Makefile
I am trying to write a Makefile but it is showing
Make: Don't know how to make cc. Stop.
what I am doing is this :-
Hello.c
#include<stdio.h>
extern int print();
int main(){
print();
...
0
votes
1answer
23 views
undesired behaviour: makefile executes shell script while parsing
I have a script which generates some source files for my c++ project.
The script itself looks like this:
echo "total args: $#"
if [ $# -eq 7 ]; then
echo "in if"
$1/../tools/xsde [...]
fi
It is ...
1
vote
1answer
26 views
how to use recursive make with an option telling it not to travel down the tree if needed?
I setup make to build my tree using recursive make. So the setup is
A/Makefile a.c
A/B/Makefile a.c
A/B/C/Makefile a.c
where if I issue the command make all from level A/ then make will travel ...
0
votes
1answer
21 views
Switching CC variable in Makefile based on argument
I have a C program that I would like to compile for both host and a guest architecture.
Host is i86
Guest is ARM
I tried writing code as follows
CC=arm-none-linux-gnueabi-gcc
all : arm
arm :
...
0
votes
1answer
53 views
What is the best way to write a makefile from a makefile
I am trying to write a rules file (makefile) from a makefile, I used echo command to do it,
but when I come to the part with $, I cannot figure out how to do it right.
I tried :
$(shell echo -e ...
0
votes
2answers
36 views
makefile for ftp server - compile when header file modified
I created a makefile for my project and it looks like this:
CC = g++
LDFLAGS = -lpthread
CFLAGS = -Wall -pedantic -Wno-long-long -O0 -ggdb
SOURCES = main.o List.o ProcessCommands.o HandleTransfers.o
...
0
votes
1answer
24 views
Make is running old/broken commands
I'm running Lubuntu 12.10. My make file is named makefile and looks like this:
all: SquaresTesting.o Vector2d.o
clang -o SquaresTesting SquaresTesting.o
SpringTesting.o: SquaresTesting.cpp
...
0
votes
1answer
28 views
Creating Makefiles for VC++ with more than one cpp file
I am tasked with adapting a boiler plate make file from a text book to be used with my project. I have 3 source files, Item.cpp Main.cpp and Item.h, and of course makefile.
I am lead to believe the ...
0
votes
0answers
19 views
How to build curlpp on Mac OSx 10.8
I would like to try the C++ wrapper for libcurl; curlpp. The documentation seems to be non-existent. I am following the steps that I found here:
http://wiki.hartungdesign.net/docs:mac:builds:curlpp
...
3
votes
0answers
71 views
Code works correctly if compiled with a Makefile, it crashes if compiled with XCode
I'm experiencing a strange problem in one of my projects. My code base depends on an external library, which contains a class named Dataset. The Dataset class privately inherits from ...
1
vote
1answer
25 views
How to have proper XML layout using PHP input
I know thins is not secure at all, but it is still before the beta stage and I'm just looking for functionality. So, I have a user input area where they put in their information. From there, the ...
0
votes
2answers
33 views
how do makefile dependencies work?
I am currently confused as to how makefile targets work. I have a current understanding, and I don't know if it is correct because the tutorials I've been reading aren't very clear to me. Here is my ...
-2
votes
0answers
28 views
makefile error No rule to make target `main.cpp', needed by `main.o'. Stop
I'm trying to use linux with a makefile to compile my project.
i have been getting this error:
No rule to make target main.cpp', needed bymain.o'. Stop.
and i cant find the reson, any ideas?
this ...
0
votes
1answer
61 views
MakeFile to run Mocha tests with NPM
I am trying to create a MakeFile to run my Mocha unit tests with NPM. So I have Mocha installed and a unit test created in:
{project_root}/test/test.js
Now, when I try 'make test' Make replies ...
2
votes
0answers
56 views
Compile Linux Kernel Modules into LLVM .bc bitcode
Background
I'm trying to compile certain drivers within the Linux kernel: drm (drivers/gpu/drm/drm_drv.o) and radeon (drivers/gpu/drm/radeon/) gpu drivers. I'm using LLVM for the purposes of static ...
0
votes
0answers
31 views
Linux Eclipse C++ build project from command line
Simple problem, I have a relatively large C++ project that was written in eclipse, I committed that project to svn, and checked out the project on another Linux machine via command line.
I navigated ...
0
votes
1answer
22 views
Read environment variable in make file
I have a environment variable set with name $MY_ENV_VARIABLE.
How do I use this variable inside my makefile to (for example) include some source files?
LOCAL_SRC_FILES = ...



