active questions tagged makefile - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T18:24:44Z http://stackoverflow.com/feeds/tag/makefile http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1846054/is-there-a-tool-to-automatically-convert-a-make-file-to-sln-vcproj 1 Is there a tool to automatically convert a make file to sln/vcproj? Andy Patrick 2009-12-04T10:16:31Z 2009-12-04T10:16:31Z <p>Google reveals many tools for taking Visual Studio format sln/vcproj files, and producing a make file from them. But I can't find one that solves the opposite problem - I have a make file that references hundreds of .c and .h files and (for convenience, for debugging, for writing code in the VS IDE) would like to open it as a Visual Studio project.</p> <p>Where can I find a tool to take an arbitrary make file as input, and produce Visual Studio project/solution files as output?</p> http://stackoverflow.com/questions/1834663/makefile-ifeq-directive-compares-special-variable-to-constant-does-not-work 2 Makefile: ifeq directive compares special variable to constant does not work Paul 2009-12-02T17:53:35Z 2009-12-03T11:51:49Z <p>Hi're,</p> <p>I have a little issue with my Makefile. I want make to change commands regarding the working directory. I added a conditionnal directive to the rule testing the current target's directory ($(*D)).</p> <p>The thing is that make always goes to the second branch of my test, even when my file is in mySpecialDirectory and echo indeed prints "mySpecialDirectory".</p> <pre><code>.c.o .cpp.o .cc.o: ifeq ($(*D),mySpecialDirectory) @echo "I'm in mySpecialDirectory! \o/" $(CC) $(DEBUG_FLAGS) $(MYSPECIALFLAGS) -c $&lt; -o $@ else @echo "Failed! I'm in $(*D)" $(CC) $(DEBUG_FLAGS) $(NOTTHATSPECIALFLAGS) -c $&lt; -o $@ endif </code></pre> <p>Thanks for your help!</p> http://stackoverflow.com/questions/1839037/include-stdio-makefile 0 include stdio makefile Sven 2009-12-03T10:27:32Z 2009-12-03T10:35:19Z <p>Im trying to use the sprintf() function. Therefore I has to include the stdio.h in my C project. If I compile the project without including the stdio.h in my makefile, the compiler generates the error that sprintf() is a unknown function. Including the stdio.h to the makefile generates the error that there is "no rule to make target." </p> <p>The makefile template gives the options as follows:</p> <pre><code>NAME = test CC = arm-none-eabi-gcc LD = arm-none-eabi-ld -v AR = arm-none-eabi-ar AS = arm-none-eabi-as CP = arm-none-eabi-objcopy OD = arm-none-eabi-objdump CFLAGS = -I./ -c -fno-common -O0 -g -mcpu=cortex-m3 -mthumb AFLAGS = -ahls -mapcs-32 -o crt.o ASFLAGS = -Wa,-gstabs LFLAGS = -Tlinkerscript_rom.cmd -nostartfiles CPFLAGS = -Obinary ODFLAGS = -S </code></pre> <p>I hope that you can help me out, because I have no desire to rewrite every standard function.</p> <p>Sven</p> http://stackoverflow.com/questions/1838040/how-exactly-do-i-use-a-makefile 1 How exactly do I use a makefile? kevin 2009-12-03T06:25:59Z 2009-12-03T08:15:47Z <p>I'm really confused at the moment.</p> <p>So I have 5 files: main.c, flight.c, flight.h, passenger.c, and passenger.h</p> <p>flight.h has function prototypes for flight.c, and passenger.h has function prototypes for passenger.c</p> <p>flight.c and passenger.c have definitions for these functions.</p> <p>main.c is the program I'll interact with, calling functions from both .c files</p> <p>I'm not really sure what .o files are for, somebody please care to explain? Here is my Makefile:</p> <pre><code>flight.o: flight.c flight.h gcc -Wall -g -c flight.c passenger.o: passenger.c passenger.o gcc -Wall -g -c passenger.c main.o: main.c gcc -Wall -g -c main.c reservations.out: main.o flight.o passenger.o gcc -Wall -g flight.o passenger.o main.o -o reservations.out </code></pre> <p>EDIT: I then use the command "make Makefile", and get an error: make: Nothing to be done for `Makefile'.</p> <p>In my file there is a tab before gcc. I'd appreciate any help, I'm sure there are lots of things I'm doing wrong. Thanks.</p> http://stackoverflow.com/questions/946105/makedepend-equivalent-for-use-with-nmake 0 makedepend equivalent for use with nmake? Andrew 2009-06-03T17:41:26Z 2009-12-01T11:00:06Z <p>Just wondering if there is a 'makedepends' equivalent that ships with visual studio that I can use with nmake. Does anyone know?</p> http://stackoverflow.com/questions/1823392/can-you-create-custom-build-rules-for-xcode-based-on-file-type 0 Can you create custom build rules for XCode based on file type? David Maymudes 2009-12-01T00:57:03Z 2009-12-01T01:08:14Z <p>I have a project with a bunch of .png files that I want to convert to PVRTC compressed textures. Right now, I'm using a custom XCode run script phase that looks like this:</p> <pre><code>TEXTURE_TOOL=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/texturetool $TEXTURE_TOOL -e PVRTC --bits-per-pixel-2 -o "$SRCROOT/images/select_menu_bgs1.pvr" -f PVR "$SRCROOT/images/select_menu_bgs1.png" $TEXTURE_TOOL -e PVRTC --bits-per-pixel-2 -o "$SRCROOT/images/select_menu_bgs2.pvr" -f PVR "$SRCROOT/images/select_menu_bgs2.png" </code></pre> <p>but it's annoying to have to make it explicitly include the exact list of files I need converted. (they also need to be added to the input &amp; output properties of the build step, which is the even more annoying part.)</p> <p>what I would like to do is something easy with "make": have a rule that says "if there's a .pvr in the project, it's built from the corresponding .png using this command line."</p> <p>Is anything like this possible in XCode?</p> http://stackoverflow.com/questions/1802528/netbeans-re-produce-makefile-when-change-options-in-c-c-developing 0 Netbeans re produce Makefile when change options in c/c++ developing SjB 2009-11-26T09:19:40Z 2009-11-30T20:01:53Z <p>I create new c/c++ project in Netbeans and change Makefile and add -lpthread for work with pthread and run my project .also I need to add some runtime argument from project properties/Run/Arguments . when I change runtime Arguments Makefiles that place at /'project folder'/nbproject/private/Makefile-Debug.mk &amp; Makefile-Release.mk are re produced and my edit and -lpthread clear .<br> now it's a bug ? or feature ? and how to avoid it ?</p> http://stackoverflow.com/questions/1789705/how-does-make-know-which-files-to-update 3 How does make know which files to update Phenom 2009-11-24T12:15:01Z 2009-11-28T19:51:46Z <p>I noticed that when I make changes to some files and then I type make, it will run certain commands related to those files. If I don't change anything, then make doesn't do anything, saying that the program is up to date. This tells me that make has a way of knowing which files were changed since it was last run. How does it know? It doesn't seem to put anything in the directory where it is run, so it must be storing this information somewhere else.</p> http://stackoverflow.com/questions/1541559/autoconf-configure-takes-long-time-in-cygwin 0 autoconf / configure takes long time in cygwin Naveen 2009-10-09T02:45:32Z 2009-11-27T19:00:03Z <p>is there a way to speed up the configure script when compiling using the gnu toolchain on cygwin? reconfiguring with only minor changes takes equally long, is there a way to cache the configuration ? </p> http://stackoverflow.com/questions/1161582/makefile-source-in-multiple-directories-dependency-problem 0 Makefile, source in multiple directories, dependency problem seg.server.fault 2009-07-21T20:28:57Z 2009-11-26T17:23:12Z <p>I am experimenting with makefile...mainly when sources are in many directories</p> <p>I have following situation...</p> <p>project/src/ contains directory A, B, Main</p> <p>Directory A contains A.h and A.cpp; B contains B.cpp and B.h; and Test contains test.cpp</p> <p>A.cpp includes A.h; B.cpp includes B.h and Main.cpp includes A.h, B.h</p> <p>project/lib contains libA.a libB.a </p> <p>Makefile for A and B is fine...no problem with that...i am creating libs from objects and then copying them into lib directory</p> <p>eg. makefile for directory A, and similar for B</p> <pre> <code> all:test test : A.cpp A.hh g++ -c A.cpp -o A ar cru libA.a A.o cp libA.a pathto/project/lib </code> </pre> <p>I have makefile for Main directory as</p> <pre> all: test test: test.o g++ -I.. -L../../lib test.o -o test -lA -lB test.o : test.cpp g++ -c test.cpp -o test.o </pre> <p>Everything works fine...only thing that I want to solve is that final executable 'test' depends on objects from libA and libB, so when A.h or A.cpp or B.h or B.cpp changes, it should be made again So, I now changed my makefile as <pre><code> test: test.o ../../libA.a ../../libB.a g++ -I.. -L../../lib test.o -o test -lA -lB </pre></code></p> <p>Now, problem is how I can modify this so that it will make test again only when its dependencies are newer than the 'test'. There is no direct rule to make libA and libB, which Makefile requires and complains about; since I am copying these libs from directory A and B into directory project/lib.</p> <p>So, I guess one solution would be to call make in respective directory A and B when anything is new than 'test' but how do I exactly do that ? Or, any other better solution is appreciated.</p> <p>Thanks a lot :)</p> <p>EDIT</p> <p>Here what I did and it solved the problem</p> <p><pre><code> .PHONY : libA libB</p> <p>../../libA.a : libA libA : cd pathtoDirA; $(MAKE)</p> <p>../../libB.a : libB libB : cd pathtoDirB; $(MAKE) </pre></code></p> http://stackoverflow.com/questions/1365305/flat-object-file-directory-structure-output-with-gnu-make 0 Flat object file directory structure output with GNU Make Justicle 2009-09-02T00:21:42Z 2009-11-26T09:14:44Z <p>I have a C++ small project using GNU Make. I'd like to be able to turn the following source files:</p> <pre><code>src/ a.cpp b/ b.cpp c/ c.cpp </code></pre> <p>into the following output structure (I'm not concerned about duplicates at this point):</p> <pre><code>build/ a.o b.o c.o </code></pre> <p>So far I have the following, which unfortunately puts the .o and .d right next to each .cpp:</p> <pre><code>OBJS := $(foreach file,$(SRCS),$(file).o) DEPS := $(patsubst %.o,%.d,$(OBJS)) sinclude $(DEPS) $(OBJS) : %.o : %.cpp @echo Compiling $&lt; $(CC) $(CC_FLAGS) $(INCS) -MMD -o $@ $&lt; </code></pre> <p>I'm aware of the $(notdir ...) function, but at this point my efforts to use it to filter the objects has failed. Can anyone shed some light on this? It seems like fairly reasonable thing to do.</p> http://stackoverflow.com/questions/1790904/how-to-export-headers-using-qt-pro-files 0 how to export headers using Qt pro files Suresh 2009-11-24T15:44:35Z 2009-11-25T09:20:43Z <p>I've a project with following files</p> <pre><code>TestProject/api/apiheader1.h TestProject/api/apiheader2.h TestProject/src/apiimplementaton.cpp TestProject/inc/apiimplementation.h TestProject/TestProject.pro </code></pre> <p>When the project TestProject.pro is built headers apiheader1.h, apiheader2.h needs to be copied to /usr/include/TestLib/. Is it possible to do this by specifying it in project file TestProject.pro.?</p> <p>Any pointers / links will be helpful.</p> http://stackoverflow.com/questions/1789594/how-to-write-cd-command-in-makefile 0 how to write cd command in makefile Davit Siradeghyan 2009-11-24T11:53:51Z 2009-11-24T12:08:23Z <p>for example I have something like this in my makefile</p> <pre><code>all: cd some_directory </code></pre> <p>but when I type make I saw only 'cd some_directory' like in echo command</p> http://stackoverflow.com/questions/1784806/does-the-visual-studio-c-compiler-have-an-equivalent-to-gccs-m 1 Does the Visual Studio C compiler have an equivalent to GCC's -M? Shepmaster 2009-11-23T17:48:08Z 2009-11-23T18:52:45Z <p>I would like to automatically generate a Makefile dependency list, but I am using Visual Studio 2005. If I were using GCC, I could pass -M (or one of the many variants) to create this dependency list.</p> <p>Looking through the command line options to <code>cl.exe</code>, I don't see anything obvious. I can handle tweaking the output with post-processing, but the closer the better.</p> http://stackoverflow.com/questions/1782886/build-system-for-a-highly-modular-portable-open-source-project 0 Build system for a highly modular portable open source project psihodelia 2009-11-23T12:33:02Z 2009-11-23T13:02:09Z <p>We have an Open Source software project in the very beginning. The program is thought to be highly modular: for example, the underlying database can be either sqlite, postgre, or berkley, depending on the preferences of the end-user.</p> <p>Only one systematic approach I'm confident with, is to use Autotools (GNU build system). I would like to know however, do exist any promising alternative to it? It must be Open Source and be highly portable. It should also avoid all shortages of Autotools system, e.g. lack of concurrency support (configure script is very slow).</p> http://stackoverflow.com/questions/1587261/how-can-i-get-the-full-makefile-if-a-makefile-contains-include 3 How can I get the "full" makefile if a Makefile contains "include"? hb 2009-10-19T06:44:16Z 2009-11-23T12:50:29Z <p>Is it possible to get the "full" makefile if makefile contains "include"? For example:</p> <pre><code> #here is the contents of Makefile include inc1.i include inc2.i clean: rm -rf * #here is the contents of inc1.i abc: touch abc #here is the contents of inc2.i def: touch def </code></pre> <p>How can I get a "full" Makefile without include? Because when Makefile include other inc, and inc file also include another sub-inc ... it is very hard to read!</p> <p>I want to get a "full" makefile like:</p> <pre><code> abc: touch abc def: touch def clean: rm -rf * </code></pre> http://stackoverflow.com/questions/1777588/whats-wrong-with-my-makefile 0 what's wrong with my makefile? unknown (google) 2009-11-22T02:14:58Z 2009-11-22T02:58:11Z <p>I have this project that that I compile with the following command:</p> <pre><code>g++ ALE.cpp -lncurses </code></pre> <p>This gives me a.out file. I have the following Makefile but it seems to not be edited correctly.</p> <pre><code>HEADERS = LinkedListNode.h LinkedList.h Classes.h GUI.h Functions.h default: ale ale.o: ALE.cpp $(HEADERS) g++ -c ALE.cpp -o ale.o -lncurses ale: ale.o g++ ale.o -o ale clean: -rm -f ale.o -rm -f ale </code></pre> <p>Errors I get:</p> <pre><code>g++ ale.o -o ale ale.o: In function `_start': (.text+0x0): multiple definition of `_start' /usr/lib/gcc/i486-linux-gnu/4.3.2/../../../../lib/crt1.o:(.text+0x0): first defined here ale.o:(.rodata+0x0): multiple definition of `_fp_hw' /usr/lib/gcc/i486-linux-gnu/4.3.2/../../../../lib/crt1.o:(.rodata+0x0): first defined here ale.o: In function `_fini': /build/buildd/glibc-2.8~20080505/build-tree/glibc-20080505/csu/../sysdeps/generic/initfini.c:109: multiple definition of `_fini' /usr/lib/gcc/i486-linux-gnu/4.3.2/../../../../lib/crti.o:/build/buildd/glibc-2.8~20080505/build-tree/glibc-20080505/csu/../sysdeps/generic/initfini.c:109: first defined here ale.o:(.rodata+0x4): multiple definition of `_IO_stdin_used' /usr/lib/gcc/i486-linux-gnu/4.3.2/../../../../lib/crt1.o:(.rodata.cst4+0x0): first defined here ale.o: In function `__data_start': (.data+0x0): multiple definition of `__data_start' /usr/lib/gcc/i486-linux-gnu/4.3.2/../../../../lib/crt1.o:(.data+0x0): first defined here ale.o: In function `__data_start': (.data+0x4): multiple definition of `__dso_handle' /usr/lib/gcc/i486-linux-gnu/4.3.2/crtbegin.o:(.data+0x0): first defined here ale.o: In function `_init': /build/buildd/glibc-2.8~20080505/build-tree/i386-libc/csu/crti.S:15: multiple definition of `_init' /usr/lib/gcc/i486-linux-gnu/4.3.2/../../../../lib/crti.o:/build/buildd/glibc-2.8~20080505/build-tree/i386-libc/csu/crti.S:15: first defined here /usr/lib/gcc/i486-linux-gnu/4.3.2/crtend.o:(.dtors+0x0): multiple definition of `__DTOR_END__' ale.o:(.dtors+0x4): first defined here /usr/bin/ld: warning: Cannot create .eh_frame_hdr section, --eh-frame-hdr ignored. /usr/bin/ld: error in ale.o(.eh_frame); no .eh_frame_hdr table will be created. collect2: ld returned 1 exit status make: *** [ale] Error 1 </code></pre> http://stackoverflow.com/questions/1777021/which-open-source-project-can-be-used-a-showcase-for-mid-size-project-makefile 0 Which open-source project can be used a 'showcase' for mid-size project MAKEFILE management? ccfenix 2009-11-21T22:35:25Z 2009-11-21T23:01:56Z <p>hi, guys</p> <p>now i need to design/organize the source-code structure and makefiles for the next project. This is a software implemented largely by C++ and supposed to be used normally on Linux. It will include following components:</p> <pre><code>projecthome/3rd_party_lib_boost/ hdr and src projecthome/3rd_party_lib_from_vendor/ hdr and src # libraries that will use 3rd party libs projecthome/lib_base_struct/ hdr and src projecthome/lib_utilites/ hdr and src # applications that will generate binaries, they depend on the above libs, these applications will be developed on after another, while the number of libraries are likely to be fixed. projecthome/app_1/ hdr and src projecthome/app_2/ hdr and src # shell scripts that run the above binaries projecthome/sh # python scripts that analyze the logs projecthome/py # the configuration files that need to configure the binaries projecthome/config # how to build? this is the most difficult party now I need to address projecthome/build </code></pre> <p>Now I need a way to organize the above files, and most importantly, the makefiles.</p> <p>This is the first time that I design such an 'architecture' by myself. So I come here for advices.</p> <p>I think the most convenient way is to download an open-source project's source and use it as a model. Can any one recommend a mid-size project who has similar structure as above?</p> <p>oh, my project is not very large, i think it should have 10k-20k lines of c++ code</p> <p>another thing is that, I hope the above components will not depend too much on each other, because at least one application will be sub-contracted to people outside of the company, I don't want him/her checkout the whole projecthome directory to compile.</p> <p>Can anyone give me a clue ? thanks a lot!</p> http://stackoverflow.com/questions/1774667/cmake-how-to-generate-different-shared-library-names-depending-on-build-type 1 CMake: How to generate different shared library names depending on build type Hernán 2009-11-21T06:03:39Z 2009-11-21T14:01:31Z <p>This is my first time using CMake and I'm trying to build QJSon, a JSON parser for Qt 4.x. What I want basically is to build different output library names depending on the build configuration. I'm using <code>${CMAKE_BUILD_TYPE}</code> macro to generate different targets (qjson.lib/qjson.dll and qjsond.lib/qjsond.dll). Seems that the VS 2008 solution always builds with the qjson name (no qjsond on debug builds).</p> <p>My horrible section of Makefile directives is as follows:</p> <pre><code> IF("${CMAKE_BUILD_TYPE}" MATCHES "^Rel.*") add_library ( qjson SHARED ${qjson_SRCS} ${qjson_MOC_SRCS}) target_link_libraries( qjson ${QT_LIBRARIES}) set_target_properties( qjson PROPERTIES VERSION ${QJSON_LIB_MAJOR_VERSION}. ${QJSON_LIB_MINOR_VERSION}.${QJSON_LIB_PATCH_VERSION} SOVERSION ${QJSON_LIB_MAJOR_VERSION} DEFINE_SYMBOL QJSON_MAKEDLL ) INSTALL(TARGETS qjson LIBRARY DESTINATION ${LIB_INSTALL_DIR} RUNTIME DESTINATION bin ARCHIVE DESTINATION ${LIB_INSTALL_DIR} ) ENDIF("${CMAKE_BUILD_TYPE}" MATCHES "^Rel.*") IF("${CMAKE_BUILD_TYPE}" MATCHES "^Deb.*") add_library ( qjsond SHARED ${qjson_SRCS} ${qjson_MOC_SRCS}) target_link_libraries( qjsond ${QT_LIBRARIES}) set_target_properties( qjsond PROPERTIES VERSION ${QJSON_LIB_MAJOR_VERSION}. ${QJSON_LIB_MINOR_VERSION}. ${QJSON_LIB_PATCH_VERSION} SOVERSION ${QJSON_LIB_MAJOR_VERSION} DEFINE_SYMBOL QJSON_MAKEDLL ) INSTALL(TARGETS qjsond LIBRARY DESTINATION ${LIB_INSTALL_DIR} RUNTIME DESTINATION bin ARCHIVE DESTINATION ${LIB_INSTALL_DIR} ) ENDIF("${CMAKE_BUILD_TYPE}" MATCHES "^Deb.*") </code></pre> <p>Any ideas? Sure there's a simpler configuration. Thank you.</p> http://stackoverflow.com/questions/1767852/make-is-there-a-way-to-wrap-a-command-shell-section 2 make: is there a way to wrap a command shell section? jldupont 2009-11-20T01:54:57Z 2009-11-20T02:26:06Z <p>In a makefile, is there a way to "wrap" a section of shell commands in order to save on the line continuation <code>\</code> all the time?</p> <p><strong>updated</strong>: my main area of concern revolves around stuff like <code>nested if</code> blocks.</p> <pre><code>@if ... \ #do stuff \ else: ; \ #do some more stuff \ @if ... \ # do more stuff ... </code></pre> http://stackoverflow.com/questions/1767826/makefile-how-to-show-line-numbers-for-debugging 0 makefile: how to show line numbers for debugging? jldupont 2009-11-20T01:47:47Z 2009-11-20T02:04:48Z <p>Is there a way to have make display the line number where it declares an error? The <code>-d</code> switch doesn't seem to cut it.</p> <p><strong>Updated</strong>: Example output:</p> <pre><code>Reaping winning child 0x08aa8648 PID 9381 /bin/sh: Syntax error: "then" unexpected (expecting "fi") </code></pre> http://stackoverflow.com/questions/1766720/multi-package-makefile-example-for-go 4 multi package makefile example for go oftewel 2009-11-19T21:33:22Z 2009-11-19T23:47:15Z <p>I'm trying to setup a multi package go project something like</p> <p>./main.go</p> <p>./subpackage1/sub1_1.go</p> <p>./subpackage1/sub1_2.go</p> <p>./subpackage2/sub2_1.go</p> <p>./subpackage2/sub2_2.go</p> <p>where main.go imports both subpackage1 and subpackage2. And subpackage2 imports subpackage1.</p> <p>Ive been looking around for go makefile examples but I can't find anything that supports this kind of set-up. Any idea?</p> http://stackoverflow.com/questions/1240037/recommended-build-system-for-latex 10 Recommended build system for latex? Paul Biggar 2009-08-06T16:26:38Z 2009-11-19T22:29:44Z <p>I'm trying to figure out the best build system for latex.</p> <p>Currently, I use <a href="http://code.google.com/p/latex-makefile" rel="nofollow">latex-makefile</a>, editing in vim, and viewing changes in Okular or gv. The major problem is that it sometimes gets hides errors on me, and I have to run latex manually. The major advantages are that it does all the iteration I need, and offers both pdf and ps simply.</p> <p>If you have experience with</p> <ul> <li>latex-mk</li> <li>vim-latex</li> <li>kile</li> <li>lyx</li> <li>miktex</li> <li>latex-makefile</li> <li>the ultimate latex makefile</li> <li>rubber</li> <li>any others I havent come across</li> </ul> <p>Would you recommend them, and why/why not?</p> http://stackoverflow.com/questions/1755550/what-is-the-reasoning-behind-the-makefile-whitespace-syntax 4 What is the reasoning behind the Makefile whitespace syntax? Rob Wells 2009-11-18T12:04:50Z 2009-11-19T18:37:27Z <p>G'day,</p> <p>I'm revisiting Python after Michael Sparks's excellent walkthrough of Peter Norvig's Python spell checker at the SO DevDay in London.</p> <p>One of the points he highlighted was how clean Python is to look at. Not cluttered with braces for scopes but using white space to indicate block scope instead.</p> <p>This got me thinking. I wonder if that is the reason behind the TAB indentations that are prepended to the commands needed to build a make target.</p> <p>Was it the same clarity aspect? To readily distinguish between a target and the commands needed to build the target?</p> http://stackoverflow.com/questions/589276/how-can-i-use-bash-syntax-in-makefile-targets 2 How can I use bash syntax in Makefile targets? dehmann 2009-02-26T05:56:16Z 2009-11-19T12:34:25Z <p>I often find <code>bash</code> syntax very helpful, e.g. process substitution like in <code>diff &lt;(sort file1) &lt;(sort file2)</code>.</p> <p>Is it possible to use such bash commands in a Makefile? I'm thinking of something like this:</p> <pre><code>file-differences: diff &lt;(sort file1) &lt;(sort file2) &gt; $@ </code></pre> <p>In my GNU Make 3.80 this will give an error since it uses the <code>shell</code> instead of <code>bash</code> to execute the commands.</p> http://stackoverflow.com/questions/1762775/file-or-directory-not-found-in-eclipse-c-project-in-linux-even-after-including 0 File or directory not found in eclipse c++ project in linux even after including all the paths. Why? wolverine 2009-11-19T11:50:59Z 2009-11-19T11:50:59Z <p>I have the source code of a project that has been done in C++ eclipse in linux platform and i want to change a small value in one of the port related things. So I tried to build it in eclipse in fedora by File -> New ->Standard Make C++ Project. So many inclusion errors came and I got rid of it by doing Project -> Properties -> C/C++ Include Paths. </p> <p>Then it was saying it cant find the makefile. So I checked for it and find it inside the Debug/ directory along with 3 other .mk files. I copied and pasted all those in the home directory and tried rebuilding. Then the real issue came. In the mainfile.h and mainfile.cpp, which are present in the home directory, wherever there are #include, it started saying "No such file or directory found". But 1 or 2 #include don't seems to be having any problem. </p> <p>I am totally confused and couldn't understand what to do next. Plz help me...</p> http://stackoverflow.com/questions/1400057/getting-the-name-of-the-makefile-from-the-makefile 3 Getting the name of the makefile from the makefile hcs42 2009-09-09T14:26:46Z 2009-11-18T15:37:38Z <p>How to get the name of the makefile in the makefile?</p> <p>Thanks.</p> <p><strong>Note:</strong></p> <p>I would need that because I would like my makefile to call itself, but the makefile is not called Makefile, so I'd like to write something like this:</p> <pre><code>target: ($MAKE) -f ($MAKEFILENAME) other_target </code></pre> http://stackoverflow.com/questions/924432/how-can-i-remove-the-make-warning-following 0 How can i remove the make warning..following..? Renjith G 2009-05-29T04:50:43Z 2009-11-14T09:00:02Z <p>hi</p> <p>i have got the following warning while building my code:</p> <p>gcc -o uartsim.exe xtmpmain.o uartsim.o fiber_driver.o xtmp_options.o getopt.o D:\usr\xtensa\XtDev ToolsDE\install\tools\RB-2008.4-win32\XtensaTools\lib\iss\xtmp.lib mt -V manifest uartsim.exe.manifest '-f outputresource:uartsim.exe;1' mt V2.3, Corinna Vinschen, Apr 19 2004 make: *** No rule to make target <code> ', needed by </code>all'. Stop.</p> <p>Regards,</p> <p>Renjith G</p> http://stackoverflow.com/questions/951614/makefile-query 0 makefile query unknown (google) 2009-06-04T16:22:07Z 2009-11-14T06:00:02Z <p>Hi,</p> <p>I have a few questions about makefiles. I have defined my own version of a dependency file (.d) by creating it in code and called it say .dd(Looks just like a normal .c dependency file except that this is for some internal file format). Now this file I have included in the makefile with the include statement. (There are a whole bunch of these files so I've defined this as a rule which uses subst to replace the extension as required.)</p> <p>Now suppose that file X depends on file Y i.e. X.dd contains a reference to file Y. Now from my understanding, whenever I run make and the program goes through the include and finds that Y has been updated, it somehow recompiles this so as to reflect the changes in X.</p> <p>My question and problem is when this timestamp change in Y is noticed, does make restart itself so as to include the changes. How exactly are dependency files of this sort resolved. Also file X is not a typical .c or .cc file. So how would the file be treated when its dependency changes.</p> <p>The problem I'm facing is that if file Y is changed/touched, file X does not recompile. Also if I touch file X, it recompiles just fine. Also as expected, if the makefile is touched, everything recompiles appopriately.</p> <p>This bug has me scratching my head for a few days now so any help whatsoever would be appreciated.</p> <p>Please let me know if you need any additional information.</p> <h2>Regards</h2> <p>Shishir</p> http://stackoverflow.com/questions/1607015/how-should-a-very-simple-makefile-look-like-for-cuda-compiling-under-linux 0 How should a very simple Makefile look like for Cuda compiling under linux Vereb 2009-10-22T12:58:36Z 2009-11-13T06:26:01Z <p>Hi, I want to compile a very basic hello world level Cuda program under Linux. I have three files: </p> <ul> <li>the kernel: helloWorld.cu</li> <li>main method: helloWorld.cpp </li> <li>common header: helloWorld.h</li> </ul> <p>Could you write me a simple Makefile to compile this with nvcc and g++?</p> <p>Thanks,<br /> Gabor</p>