0
votes
0answers
9 views

Building and debugging an iPhone app in XCode with a custom makefile

For reasons I won't go into, I want to use XCode to build and debug my iPhone app BUT I don't want XCode to compile and link the app, I want to run a script that calls the compilers and linkers ...
0
votes
1answer
11 views

Importing a makefile inside Eclipse - symbols could not be resolved

I'm trying to import an existing project into Eclipse. I did the following steps: - I downloaded the source from a repository. - I ran ./autogen.sh - I ran ./configure - I selected Makefile Project ...
0
votes
1answer
67 views

How to build c project mixed with some c++ code using Make?

I have a c project which I have been building using the following Makefile. CC=gcc CFLAGS= -g LIBS= -lm MOSEK_H= /home//work/mosek/6/tools/platform/linux32x86/h/ MSKLINKFLAGS= -lmoseknoomp -lpthread ...
2
votes
1answer
78 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 ...
1
vote
1answer
39 views

(GNU) Make: How does one set up a basic system?

I would like to try to establish a very small system of Makefiles. I have the following set up, but something is not quite right (this has been pieced together from reading a few SO posts about the ...
0
votes
3answers
133 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
1answer
37 views

Make not work using My redefine implicit rules

I want to separate the source code and object code to a different directory. The following is my directory tree: . |-- bsp | |-- Makefile | `-- x86 | |-- begin.s | |-- dummy.s | ...
0
votes
1answer
34 views

Should `make clean` remove submodules and third-party packages?

I'm fairly new to Makefiles. I'm unsure of the standard semantics of make clean. Which of the following is correct? make clean should remove all files that were built from other files in the ...
0
votes
1answer
100 views

Eclipse C++ project - Running external make file with different targets

I have searched for a long while but couldn't find the answer. I use Eclipse C++, and created a Makefile based project, where all the source code and make file I downloaded from some source. I could ...
1
vote
3answers
61 views

Make target which depends on an environment variable

I work on a web app whose Makefile contains the following: dist/index.html: src/templates/index.html @bin/insert-scripts $< --output $@ bin/insert-scripts replaces <--scripts--> in the ...
1
vote
2answers
56 views

gnuMake, how to force a phony target to run more than once?

my build system insists on executing make with all the targets in one call, so i get: make clean test clean build the second clean will just say "Nothing to be done for `clean'." even though it's ...
0
votes
1answer
40 views

makefile, multiple inputs, one output. keeping fresh state. possible?

I have one target that takes several input files and generate one. right now i'm ignoring the freshness state of the input files and running it as a .PHONY file.out: $(CMD) input/* file.out ...
2
votes
1answer
265 views

Have jshint ignore certain files when building Twitter Bootstrap

I often have this problem when using Twitter Bootstrap with other 3rd-party JS libraries, such as html5.js from WordPress' "Twenty Twelve" theme, where the build fails because jshint (or jslint in ...
0
votes
1answer
108 views

Understanding MakeFile for STM32 app

I am trying to develop an app on a STM32. I am a newbie and spending some time over how to build the environment to get started. On the internet , I found a source code for an app that runs on the ...
0
votes
0answers
219 views

Building JellyBean 4.2 in Mac OS X 10.7.4 (Lion)

While running the make file I'm having the following error - Please install the 10.5 SDK on this machine at /Developer/SDKs/MacOSX10.5.sdk external/qemu/Makefile.android:82: *** Aborting the build.. ...
1
vote
1answer
96 views

Makefile install target sometimes working, sometimes not

I'm currently working on a project that should also provide a source package to be packaged into linux systems. Since I'm using monodevelop, I used mdtool generate-makefiles AudioCuesheetEditor.sln ...
0
votes
1answer
53 views

use library build CMakefile to build application [closed]

I've just installed an open source library from source e.g. using cmake -> make -> install. and I believed it was successful since all examples can run. Now I'll have to pull out some of my ...
0
votes
1answer
51 views

How to write clean target?

First of all, I am not sure that what I am going to ask is my problem. Perhaps it is something else, so, please, don't hesitate to point that out. I think that the place I went wrong is the clean ...
0
votes
2answers
77 views

Pattern Matching mingw make

I'm extremely new to Makefiles, and I'm currently trying to build my first one on a project I'm starting. The problem I'm having is having it automatically know how to handle all my .cpp files ...
0
votes
1answer
240 views

How can I compile a library in 32bit on a 64bit Mac machine (Mountain Lion)

I want to compile tesseract http://code.google.com/p/tesseract-ocr/ in 32bit on my Macbook. But I have a 64bit Mac OS Mountain Lion machine. There is a Makefile, and I tried: (1) $ ./configure ...
0
votes
0answers
70 views

Building C++ project in VS2010 using makefile

I downloaded RedMon project (Print redirection monitor) sources. There no any .sln or .vcxproj files. But there is a redmon.mak file. Is there any solution to use this file for building RedMon project ...
1
vote
1answer
711 views

fatal error: vector: No such file or directory

I have an Android project comprising of lots of native code in C++. However, I am unable to build my library as it is not able to find out vector.h header file. What could be the issue ? A sample of ...
0
votes
1answer
150 views

Build libsndfile library for ARM architectures

I need to build libsndfile for use it in my audio engine on Iphone/Ipad. I've built it without error but for an i386 architecture so I've got some errors when I build my project : Undefined symbols ...
0
votes
1answer
134 views

Static Qt Build Cryptic Error

I am trying to do a static build of Qt (4.8.1) using mingw32-make (gcc 4.7.0) so that I can statically link my application for the sake of ease of use/delivery. I keep getting a strange error from ...
1
vote
1answer
86 views

Make's output, the number in the brackets

What's the significance of the number in the square brackets in Make's output? make[7]: Leaving directory '/home/mike/...' make[6]: Leaving directory '/home/mike/...' make[6]: Entering directory ...
0
votes
0answers
117 views

Is there a “watch” / “monitor” / “guard” program for Makefile dependencies?

I've recently been spoiled by using nodemon in a terminal window, to run my nodejs program whenever I save a change. I would like to do something similar with some C++ code I have. My actual project ...
1
vote
1answer
184 views

managing library dependencies with Boost.Build and C++

I want to develop a project which can be built on a bunch of different platforms. The project code will be in C++, what's the the best way to manage libraries? I plan on using bjam as the build ...
0
votes
1answer
161 views

makefile circular dependency and overriding commands

Have a reference makefile that im slowly editing and using which spits out these two errors Makefile:25: warning: overriding commands for target `build/semanticHash' Makefile:21: warning: ignoring ...
0
votes
2answers
78 views

How do I create one specific directory with Automake?

I just want to know what do I need to write in the Makefile.am to create a directory called build in the same directory where Makefile.am is.
0
votes
1answer
237 views

GNU Makefile automatic dependency resolve

I've been using qmake and CMake in the past without any problem to generate my makefiles. However, recently I figured on some of the clusters I run my codes these tools are harder to find/install so ...
0
votes
1answer
878 views

Android build system: How to include prebuilt files from a .tar file?

I'm building a customized Android system (JellyBean). I've got a project (from the upstream) containing a .tar file which should be untar'd at the build time and it's content should be copied to a ...
1
vote
4answers
110 views

In a Makefile, is it possible to have a target be out of date iff another target is out of date?

I want to write a rule that looks something like this: foo.out: (out of date if foo.in is newer than foo.out.stamp) # update foo.out if and only if the new foo.out has different contents # ...
3
votes
1answer
271 views

How to write a simple hierarchical Makefile?

Some days ago I posted an answer in stack overflow about how to write a hierarchical make (http://stackoverflow.com/questions/1498213/make-hierarchical-make-file). The answer was deleted, therefore I ...
0
votes
1answer
91 views

Why isn't my eval fuction in my Makefile working?

When I try to run the following make file (updated with suggestions below): # Build Directories src_dir=src obj_dir=obj bin_dir=bin cc=cl cc_flags= configs = dbg rel # create the directory for the ...
0
votes
1answer
100 views

Why doesn't my makefile target-specific variable work?

I am trying to make a makefile which does the following: gets source files from the src directory puts object files in the obj directory puts binary files in the bin directory puts release targets ...
1
vote
1answer
112 views

Install script for perl script

I have simple perl script and I want to make install script which install dependencies (perl modules) and copy my file.perl to /usr/share/path asking about password if necessary. I found that there ...
1
vote
2answers
124 views

Makefile.in without Makefile.am in projects

In several projects I have seen the Makefile.in without Makefile.am . E.g. bash http://git.savannah.gnu.org/cgit/bash.git/tree/ and dtach http://dtach.cvs.sourceforge.net/viewvc/dtach/dtach/ I always ...
0
votes
0answers
37 views

application not picking up correct Boost configuration

Currently if i make the following call from main.cpp the correct configurations are picked up from boost (a macro set within a header file forcing files to be generated within /tmp and not /var) ...
1
vote
1answer
1k views

Build OpenSSL on Linux with -g for debugging

I have a segfault coming from OpenSSL (specifically SSL_read) that I'd like to debug. I think the best step to take here is to build the library myself with debug symbols so I can step into the ...
1
vote
1answer
261 views

How to make the target depend on lib file, but exclude it from $^ (VPATH involved)?

Imagine this structure: root/ | +-- include/ +-- src/ +-- build/ +-- lib/ +-- tests/ | +-- common +-- test1 +-- test2 +-- test3 In tests/, the folder common/ contains a couple ...
3
votes
2answers
469 views

Conditional in makefile that redefines variable?

I have a variable in my makefile I would like to either unset or redefine, so that targets a, b and c use the correct value of MY_VARIABLE (or none at all) within their respective makefiles. If I run ...
0
votes
1answer
276 views

How to run a command before BUILD_EXECUTABLE is called in Android?

I am building droid-VNC-server on Android-4.0.4 (https://github.com/oNaiPs/droid-VNC-server). This app uses cmake to create some header files. The Android.mk simply builds some binaries with the ...
1
vote
1answer
187 views

How to specify compiler in makefile?

All, I'm trying to modify a Makefile to use a embedded cross compiler instead of the PC's compiler. The Makfile does not have the normal CC or CXX variables. In fact, it appears that is calls ...
0
votes
2answers
197 views

Makefiles - Compiling to a different target folder

I have a list of library folders that I'm specifying in a make file: LIBRARIES = Ethernet \ SPI \ SD I also have a number of rules for ...
14
votes
2answers
914 views

Best practices for CFLAGS handling in configure scripts?

I'm not a fan of autoconf, but in the interest of principle of least surprise, I'm trying to make my (non-autoconf) configure scripts behave as closely as possible to what users expect from an ...
0
votes
2answers
490 views

How can I tell premake to generate a Makefile that uses clang?

I would like to build my application using clang when generating a Makefile (gmake toolchain). Is there a way to do this?
0
votes
1answer
75 views

Building on another machine - Workflow

I'm used to building my source in an IDE and having good feedback in the environment. Currently however I'm writing source code in notepad++, ftp'ing it to another machine with specific environment ...
2
votes
1answer
73 views

what is a good book or reference for configure / makefile scripting, in the context of iOS development? [closed]

My C and Objective-C skills are ok but i really could do with a better grasp on building binary's and libraries using configure and make files. Is there a book or consolidated reference I should be ...
0
votes
2answers
151 views

using make build/minimize JS files that have changed

I'm working on using a Makefile to help perform build steps for my JS in my application. The goal is to use Make's ability to only deal with modified files to prevent extraneous copying and such. To ...
0
votes
1answer
43 views

How do I install a program that involves make, configure, and build?

I knew this day would come, so I guess it is here. (P.S. I am on windows XP). I am trying to use this program here. I installed it fine, but it doesnt seem to work when I type in equations. So I went ...

1 2 3