0
votes
2answers
33 views

Import environment settings into Makefile (ubuntu and osx)

In a shell script I can . conf/environment Can I do the same in Makefile?
0
votes
1answer
50 views

Include a few .so files

I'm trying to use a few dynamic library I have written but gcc seems to be unable to find them and I'm not understanding why that is. The files libresistance.so, libcomponent.so and libpower.so are ...
0
votes
2answers
36 views

“Argument list too long” in display all list elements

I would like to dump the content in a list, but I have no idea how to solve this problem now. When I try to display all elements in the list, shell shows: arguments list too long in Makefile: ...
0
votes
1answer
27 views

makefile compile with gcc UNIX

Trying to make makefile to turn all .c into execute files in directory. For example: am.c 2.c s.c into am 2 s programs. Anything works,but it uses cc, but I want to use gcc compiler. How can I ...
0
votes
2answers
26 views

GNU Makefile dependency in multi-job make

I have a c++ project under linux. I'm using GNU make and GCC I have following rules: all: ... version: config: rm -f config.h @$(MAKE) --no-print-directory config.h config.h: # ..... create ...
0
votes
1answer
34 views

-@ precedes shell script, what does it mean

please see the following code in busybox makefile scripts/config/conf: scripts/config/Makefile $(MAKE) -C scripts/config conf -@if [ ! -f .config ] ; then \ cp $(CONFIG_DEFCONFIG) ...
0
votes
0answers
32 views

Automake dependencies generation

I am using automake on Debian Squeeze for compiling a very simple C project with 6 source files. The issue comes when I try to compile the sources using the generated Makefile. One of the sources ...
0
votes
0answers
32 views

How to add readline library to an ARM based processor runs Android?

I want to use readline lib on emmbbeded linux (an Android platform), I want to write something like this. basically I need to include these .h files in my c code: #include ...
1
vote
0answers
21 views

VS2012 project file into makefile

hello all i'm developing cross-platform system. I know that we have make it so. and some others like sln2mak. however they do not support Visual Studio 2012. does anyone know if something like this ...
0
votes
2answers
51 views

Redirecting standard error to file and leaving standard output to screen when launching makefile

I am aware that for redirecting standard error and output to file I have to do: make > & ! output.txt Note I use ! to overwrite the file. But How can I redirect standard error to file and ...
0
votes
1answer
48 views

using cpp preprocessing replaces 0x0D with 0x0A in a string

At my workplace we are using an old proprietary language in combination with some C macro's. In order to compile this code it has to be heavily groomed using a script and I was hoping to move to ...
-1
votes
1answer
51 views

how to link dependency libraries with makefile

Dependency Libraries: libxml >= 2.7.6 openssl >= 0.9.8 Digital Signature Generation requires an additional libraries: libXslt >= 1.1.24 libxmlsec1 >= 1.2.9 These are Dependency library. i ...
1
vote
2answers
48 views

Makefiles output directory

I am a bit a beginner in using makefiles and I am trying to write a makefile for gcc that accepts the inputs from two different directories (in my case they are called kernel and drivers) and output ...
0
votes
1answer
59 views

make file issue: error at every line

I try to build a library of some project. When I run it as ./MakeFile from terminal I get a bunch of errors for every line. Below is the makefile and the errors. What is wrong with it? For other ...
-4
votes
0answers
26 views

how to install xmlsec1 1.2.9 or above (if digital signature need to be generated) [closed]

i have some files which have digital signature function that requires xmlsec1 1.2.9 for running the makefile... but i am new for this . so i dont know how to install this.... i am using ubuntu 11.4. ...
-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 ...
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
119 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
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
61 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
1answer
60 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 ...
2
votes
2answers
153 views

Makefile for pthreads

I am trying to compile a pthread example, but am getting the following error: make: *** No rule to make target `example.cpp', needed by `example.o'. Stop. This is my makefile: CC = g++ CCFLAGS = ...
0
votes
1answer
41 views

how to create shared lib from objects or static lib

I would like to get shared libs for dynamic linking. I have object files and static files, but no shared lib files. Can I convert somehow them to create shared lib?
0
votes
1answer
74 views

how to resolve compiling error — makefile

I have modified a makefile and trying to compile a project. But it is failing in fist step only. Even i have specified pattern rule for compiling, w.r.t :-- ...
0
votes
1answer
83 views

Run Executable from makefile

Hey I just have a quick question about makefile's. Is there some way to auto run the executable generated from a makefile? Like if I just type "make" it will compile and build and automatically ...
2
votes
2answers
61 views

Shell Script: error during comparison (Linux)

I am passing an argument into a shell script through make using: smktestrun: smktest @../projects/test.sh $(TESTARGS) Then call the Makefile with $ make smktestrun TESTARGS="-abc" And ...
0
votes
3answers
72 views

Assignment of variable is not getting picked up in makefile

I am using a makefile where there is a line like VAR=$(MVAR) command1; Now when command1 executes i want VAR to retain the value what is being assigned by MVAR which is required for the successful ...
0
votes
2answers
100 views

Unsure how to create a MakeFIle

I am having problems with creating a makefile for a project containing 3 c++ files. While in the directory containing the files (tree.h, helperMethods.h, and main.cpp), I first use the command emacs ...
1
vote
2answers
156 views

How to pass parameters from makefile to Linux kernel module source code

I have the source code: #include <linux/module.h> #include <linux/kernel.h> int init_module(void) { printk(KERN_INFO "Hello world %i\n", BUILD_NUMBER); return 0; } void ...
0
votes
0answers
149 views

Error running make: missing separator (did you mean TAB instead of 8 spaces?)

I'm trying to get PHP phar command line tool installed on my Debian VM, how here described: (1) download the php-src, I assume it's in /tmp/php/src (2) make the dir /tmp/phar (3) Save ...
0
votes
1answer
39 views

Kbuild - including source file from external directory

I have some source code which I want to use for both a kernel module and in a user-space program. I'd like to only maintain a single copy of that code within my source tree. I was thinking of ...
2
votes
1answer
145 views

Linux kernel module compilation fails

My last kernel development was in version 2.6~ Now I try to compile a module, and I get the following error when compiling outside the kernel tree. /bin/sh: 1: ...
0
votes
1answer
62 views

Redefinition Issue using Makefile

main.c: #include <stdio.h> #include "proto.h" int main(void) { return(0); } // end main support.c: #include "proto.h" \\ only function defintions proto.h: #ifndef proto #define ...
2
votes
1answer
84 views

Building an out-of-tree Linux kernel modules which share object files with exported symbols

Imagine a project, which needs to build two linux kernel modules, with the following layout of sources tree: modules/ |--common/ | `--common_data.c |--mod1/ | `--mod1_main.c `--mod2/ ...
0
votes
1answer
53 views

Is it bad to have no default target in a Makefile [closed]

Is it bad practice to have something like: all: in a Makefile, to enforce the user to specify the target, and ignore the default one?
0
votes
1answer
77 views

How to check kernel version in Makefile

How can I check my kernel version in my Makefile ?? Based on the kernel version I want to select some of the header files accordingly.
1
vote
1answer
119 views

What value does $(shell pwd) give?

Going through a MakeFile i find PROJECT_ROOT = $(shell pwd) What value does it give. $SHELL gives the shell and $PWD gives present working directory But what does $(shell pwd) give?
-1
votes
1answer
42 views

ft-models.out makefile error

i just try to compile a makefile, But it didnt work, My Makefile is this, this is very important for me, i will upload and post a link for all folders, if anyone can help me, probably he will go ...
0
votes
1answer
104 views

Unable to include library in make file

I have the following 3 makefiles which have been generated by some other programmer. I have included my code in between which I have marked with a begin and end. The code intends to include the ...
1
vote
1answer
278 views

Makefile for a Linux kernel module with multiple sub-directories

I need help regarding the Makefile for a kernel module. Even examples would be of great help. Currently my module code is under multiple directories. Let us say <MAIN-DIR> --- l2.c ...
0
votes
1answer
52 views

Compiling cpp files in one directory into another directory

Trying to compile all .cc files in folder called P18298_ca.sub into .exe files in P18298_ca.cmp. I compile using make command from the directory that contains both the source and the target ...
0
votes
0answers
68 views

how to unmake a makefile into gcc options?

For reasons given at Android gcc sysroot and linker, I am compiling my Android NDK project with arm-linux-gnueabi-gcc. This requires compiling the source, with the options specified in a makefile as ...
0
votes
3answers
55 views

change default all to something else in makefile [duplicate]

In the case of building multiple targets in makefile, when I say 'make' it by default makes all the target. Is it possible to change the default of all to something else ? all : target1 target2 ...
0
votes
1answer
36 views

create objects files depending on the name of target

Is it possible to create objects files in makefile depending on the name of the target? something like all : gsm gsm_db if make gsm %.o : %.cpp $(CC) $(CFLAGS) $< -o $@ if make gsm_db %.o : ...
0
votes
1answer
53 views

What library would it link against - static or shared object

I have a C++ based project(many source files) compiled using gnu make via a makefile. I have an application which links a library, say mylib. Now mylib is owned by some other developer. I see 2 files ...
0
votes
3answers
361 views

Adding prebuilt set of files structured in folders to android out folder

I have glibc compiled for arm which is different from Android glibc or the bionic C as the glibc environment I have complied will help in providing more api's. Now I can copy the glibc environment on ...
0
votes
3answers
245 views

Undefined Reference at Linking in Static Git Build

I'm trying to install git on a shared server (with no root access or compiler) by building it statically on my own machine (running Arch Linux) with the same processor architecture (x86_64) as the ...
0
votes
1answer
352 views

GCC error: 'for' loop initial declaration used outside C99 mode

I'm getting error: 'for' loop initial declaration used outside C99 mode when I try to compile with make. I found a wiki that says Put -std=c99 in the compilation line: gcc -std=c99 foo.c -o foo ...
3
votes
4answers
119 views

Recreating a C make-file with correct link order and dependencies

Good day, I have a bit of a quandary in regards to a make-file: I have source-code I last worked on in the late 90's-2000 and have it all backed up, apart from the make-file (yes berate away, bad ...

1 2 3 4 5 8