A makefile is usually an input file for the build control language/tool make.

learn more… | top users | synonyms (1)

0
votes
1answer
59 views

Shared objects with libraries and directory inclusions in Cmake

I'm very new to Cmake, and I'm trying to use it as an alternative to this approach, which did not work fine. My structure is actually simple, I have: App/src/ App/src/so1 App/src/so2 App/src/so3 ...
0
votes
0answers
182 views

use two library in the same JNI file

I'm using vuforia API to make an augmented reality application.Now I'm trying to integrate another library (opencv). I made changes in the android.mk file. But i still can't use opencv library and ...
5
votes
0answers
83 views

How to have make build from one directory if the source file exists, otherwise build from another?

I'm working on modifying a huge recursive makefile project that has 6000+ source files. All of which are clearcase controlled. Since I don't want to copy the whole source tree, I'm trying to create ...
2
votes
2answers
99 views

Writing dependencies in makefile, with makefile

Based on some SO questions -- and some further reference found --, I'm trying to build a makefile able to: find, given the directories in $(SRC), the .cpp files to be compiled; compile the .cpp, ...
0
votes
1answer
17 views

`Is defining a macro via -D option ALWAYS equivalent to #define MACRO (except precedence)

I have a third party piece of code that works differently when I add a macro via Makefile e.g. -DMacro instead of doing #define MACRO in a top level header file (which as their documentation implies ...
0
votes
3answers
87 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 ...
1
vote
1answer
76 views

ldd says library isn't found by compile completes successfully

I am attempting to compile project. It compiles successfully. My make command exits with a status code of 0 and there are no errors displayed. However, the project is not working, and when I run ldd ...
1
vote
1answer
43 views

How to create directory if needed?

I'm trying to use makefile, my problem is that I have a directory, with an src directory and a Makefile. I also use a tmp directory what I also have to create. It has object files in it. And for ...
0
votes
3answers
81 views

How to create a simple makefile? [closed]

I have three files: main.c, foo.c, and foo.h. I was wondering how to make the simplest makefile possible for this? I've never made a makefile before and everything I've tried is just giving me ...
0
votes
1answer
85 views

Error: mixed implicit and normal rules

I have just updated make to GNU Make 3.82 Built for x86_64-pc-linux-gnu Copyright (C) 2010 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later ...
2
votes
1answer
111 views

Missing dependency when building with CMake

I'm trying to build the Polycode codes using CMake. I followed the instructions in the Build.md file, but I get the following error: $ cmake -G "Visual Studio 10" .. No POLYCODE_RELEASE_DIR ...
0
votes
3answers
67 views

Makefile with headers including headers

In app.c: #include "app.h" In app.h: #include "model/world.h" #include "controller/controller.h" How do I write a target for app.o in a makefile? Should I include all three headers in the ...
0
votes
3answers
32 views

Makefile: rule with the same name as subdirectory ignored

This is my makefile: all: first second second: @echo "==Building second==" first: @echo "==Building first==" If there is a directory named second, the rule with the same name will be ...
0
votes
2answers
22 views

Add prerequisite on condition

Is it possible to add a prerequisite if another file is found in the workspace? Or how else could I achieve the following idea? Basically if my workspace has a lcf file in a specific location I need ...
0
votes
2answers
41 views

Linking errors with SDL_mixer library

I'm working with the SDL and SDL_mixer library and am getting the following errors when I compile: .... game.cpp:(.text+0x88f): undefined reference to `Mix_OpenAudio' Jukebox.o: In function ...
0
votes
0answers
24 views

How to write Java Makefile with custom packages?

I am trying to use my own package for my classes but my Makefile keeps giving me problems. I have searched google but I can't understand what others are saying about class paths. JFLAGS = -g JC = ...
0
votes
2answers
48 views

Makefile confusion with fortran and c

this is my first time making a make file. I'm a little confused since my fortran code uses some functions defined in c source files. This is what I've written so far: CC = ...
1
vote
1answer
134 views

reading variable value declared in script.sh in Makefile

I run makefile to generate an image file for a target device. After I burn the image into the target device during one of the operation funtion1.sh calls script.sh where my VAR is declared. I want ...
0
votes
1answer
33 views

C- Makefile for the entire folder

I have been using a makefile for my c++ projects. However I tried to convert it into C and tried to compile with gcc and getting a such error: make: *** No rule to make target*.o', needed by microc'. ...
1
vote
1answer
164 views

C4DROID Makefile issues

For all you C4DROID dev's, I have a question about the Makefile option. I have been toying around with it for some time now, and just can't seem to get it to function properly. I've tried ...
0
votes
1answer
48 views

Java makefile run

I have a project that I created with eclipse. Now I want to copy this project to my linux computer to compile and run it there. For this I want to create a makefile for compiling and running ...
0
votes
1answer
73 views

How can I get my makefile to compile/link older and newer GCC/GNU libraries? C++

I have GNU 4.7.1 as the default on my MacBook. I keep getting tons of segfaults when I run my program on my school's server. I downloaded the current state of my program from my schools server so that ...
0
votes
1answer
30 views

building a solution from makefile VS2010

I just downloaded some source code to which it states that a Visual studion .sln file can be made by using makefile. There is a makefile file in the folder. Any suggestions on how I could get started ...
0
votes
1answer
48 views

Android OpenCV shared library build error

When I build as static library, the source code builds well in Android JellyBean 4.1.2 using the mm command. But when I try to build the opencv folder under android/external/opencv as static library, ...
0
votes
1answer
56 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 ...
0
votes
0answers
32 views

Why do we have different ways to install different applications? [closed]

The point I'm trying to convey is that, why can't we all follow the MakeFile system which would kinda work afaik in many cases and it's generic. We have so many different systems that essentially do ...
-1
votes
1answer
76 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 ...
0
votes
0answers
37 views

Need help understanding target groups for clearmake, makefiles, and parallel builds

I am trying to use clearmake with a -J N flag, but when it gets to building, I get this warning: Rules with multiple targets may not build correctly in parallel, unless they are declared as a 'target ...
0
votes
1answer
40 views

Variables in makefile prerequisites

Is it possible to use makefile variables in prerequisites? My example below is a little backward, but should demonstrate what I'm trying to achieve: objects_subsystem1 := $(patsubst ...
0
votes
2answers
33 views

Makefile: avoid code duplication using loops for defines and rules - is it possible?

I am facing a problem of making multiple targets, and want to avoid code duplication in Makefile. I have many of these: $(TARGET1): $(OFILES1) $(LD) $(LDFLAGS) $(OFILES1) -o $(TARGET1) ... ...
0
votes
0answers
21 views

Target not matching when using %

In one of my Makefile, I have this target: obj/gen/com/qdii/tatoparser/%.class: $(srcdir)/$(RDNS)/%.java $(JAVAC) $(ANDROID_FLAGS) $< I would like to build the object ...
2
votes
1answer
55 views

pass a target name to dependency list in makefile

I am trying to write a makefile to build a set of c++ programs in the same directory that have independent source code, but similar compilation rules and shared dependencies (common headers). ...
0
votes
1answer
65 views

Makefile and linking .a libraries

I've got a src folder which, after running make, creates 4 libraries in .a format. There's also a folder tests which contains tests.cpp. This file depends on the libraries previously mentioned. I'm ...
-1
votes
1answer
28 views

Debian Package Installs No Binaries, But Lesspipe Outputs that there are binaries [closed]

I have created a .deb for my libspellcheck library. Debuild builds it correctly, but when I try to install it no binary files get included. However, when I do $ lesspipe ...
0
votes
1answer
16 views

makefile backreference to matched text

Suppose, I have 2 files, dependent upon each other: ./pictures/1_data.tex | V ./data/1.pl So, 1_data.tex is generated from the Perl file. To do it I have the following ...
1
vote
1answer
54 views

Debuild Error - Installing files in non-standard directory without getting errors

I'm creating a debian package for my libspellcheck library, and it has turned out to be quite a hassle. After a lot of work, I have been able to eliminate all but one fatal error: make[1]: Entering ...
-1
votes
2answers
50 views

GCC compile with mysql library

when I try to compile a self written project in C with includes the mysql libraries I get this error: gcc -c src/oDAO.c src/oDAO.c:4:23: fatal error: my_global.h: No such file or directory I ...
0
votes
1answer
75 views

How to compile a makefile on OSX 10.8 with no Terminal experience?

I've tried searching on this and everything seems to assume more knowledge on the subject than I have. I've downloaded this PureData external: https://github.com/badgeek/fux_videoglitch , and I think ...
1
vote
2answers
76 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
28 views

Calculating a file path in makefile

I need to calculate a file path based on some subsytem names. See MWE below. Is there an easier way to achieve the same please? See my aa, ab, ac and join approach below. I'm not keen on the ...
0
votes
1answer
47 views

Makefile bash autocompletion issue with PHP generated targets

In a large Makefile managed project, I recently added some PHP generated targets and bash completion stopped working: pressing [tab] does not trigger completion, but inserts a tab character. I ...
0
votes
1answer
32 views

Makefile to execute a sequence of steps

I use make to execute a series of process steps. Each step depends on the success of the previous one. Once completed a step, I touch a file with the name of the step into a separate directory. Here ...
0
votes
1answer
55 views

create a folder and insert an index.php file with code in it

I am developing a cms and want a user to create a folder and also insert an index.php file with some lines of code to be executed. This should be done from the control panel and every thing should be ...
1
vote
1answer
150 views

Makefile: No such file or directory

I've got this directory structure: - src - /GUILayer - /PhysicLayer - /LogicLayer - /Utilities - main.cpp - makefile - makefile.inc And this is my current makefile inside of src: ...
0
votes
1answer
67 views

Why isn't make detecting changes in header dependencies

I'm not sure what I'm doing wrong here. I'm trying to get make to figure out what dependencies my project has for, not only source files, but non-system included header files. I've many resources ...
0
votes
1answer
101 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 ...
0
votes
1answer
28 views

Special case pattern rules in Makefile

I have a generic rule for files with a given extension, but I want to add special cases for files with a prefix. I tried this: special-%.dat: special-%.raw echo "Running rule 1" %.dat: echo ...
0
votes
0answers
21 views

What is lib_adir?

I want to build a static library (libabc) consisting of c source and header files. If I define the 'HEADERS' variable, then I get the following error message: Makefile.am:59: error: ...
0
votes
1answer
47 views

C++ makefile with MySQL

I am trying to build C++ code under Linux. Its my first attempt (otherwise, I use only Windows). My code is using MySQL C API library, but I have problem building it. I got this output while trying to ...
0
votes
1answer
511 views

node-gyp rebuild error in nodejs

I have installed nodejs v0.8.11 with node-gyp v0.9.5 but when I try to install other modules that need to be compiled, I get the following error: # npm install net-ping npm install net-ping npm http ...

1 3 4 5 6 7 81