Adding a directory for the headers in a Makefile - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T21:11:26Z http://stackoverflow.com/feeds/question/341387 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/341387/adding-a-directory-for-the-headers-in-a-makefile 0 Adding a directory for the headers in a Makefile Eduardo 2008-12-04T17:17:19Z 2008-12-05T02:25:12Z <p>Hello I would like to ask you, If someone knows how can I add a directory for the header files in the Makefile to avoid the error *.h not found, I have tried this option but does not work:</p> <p>INC_PATH := -I /directory/to/add</p> http://stackoverflow.com/questions/341387/adding-a-directory-for-the-headers-in-a-makefile/341396#341396 0 Answer by unwind for Adding a directory for the headers in a Makefile unwind 2008-12-04T17:18:54Z 2008-12-04T17:18:54Z <p>At least for GNU make, try the implicit variable <code><a href="http://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html#index-CFLAGS-885" rel="nofollow">CFLAGS</a></code>, as in:</p> <pre><code>CFLAGS=-I/directory/to/add </code></pre> http://stackoverflow.com/questions/341387/adding-a-directory-for-the-headers-in-a-makefile/341486#341486 1 Answer by Jonathan Leffler for Adding a directory for the headers in a Makefile Jonathan Leffler 2008-12-04T17:43:21Z 2008-12-05T02:25:12Z <p>Although the goal is ultimately to affect the value of CFLAGS (as suggested by @unwind), it is often not a good idea to simply set the value of CFLAGS as it is often built out of many pieces. You have to understand the structure of the makefile, and the set of macros used.</p> <p>[<em>Added</em>:</p> <p>Eduardo asked: Can you post macros to do the same?</p> <p>Yes, but whether they are helpful depends on how your makefiles are structured. Here's a moderately complex example from one of my makefiles.</p> <pre><code>CC = gcc -g XFLAGS = -Wall -Wshadow -Wstrict-prototypes -Wmissing-prototypes \ -DDEBUG -Wredundant-decls #CC = cc -g #XFLAGS = UFLAGS = # Always overrideable on the command line DEPEND.mk = sqlcmd-depend.mk INSTALL.mk = sqlcmd-install.mk ESQLC_VERSION = `esqlcver` OFLAGS = # -DDEBUG_MALLOC -g OFLAGS = -g -DDEBUG -O4 PFLAGS = -DHAVE_CONFIG_H OFILES.o = # rfnmanip.o # malloc.o # strdup.o # memmove.o VERSION = -DESQLC_VERSION=${ESQLC_VERSION} #INC1 = &lt;defined in sqlcmd-depend.mk&gt; #INC2 = &lt;defined in sqlcmd-depend.mk&gt; INC3 = /usr/gnu/include INC4 = ${INFORMIXDIR}/incl/esql INC5 = . #${INFORMIXDIR}/incl INCDIRS = -I${INC3} -I${INC1} -I${INC2} -I${INC4} -I${INC5} LIBSQLCMD = libsqlcmd.a STRIP = #-s LIBC = #-lc_s LIBMALLOC = #-lefence LIBRDLN = -lreadline LIBCURSES = -lcurses LIBPOSIX4 = -lposix4 LIBG = #-lg LIBDIR1 = ${HOME}/lib LIBDIR2 = /usr/gnu/lib LIBJL1 = ${LIBDIR1}/libjl.a LIBJL2 = ${LIBDIR1}/libjlss-${ESQLC_VERSION}.a LIBTOOLS = ${LIBJL2} ${LIBJL1} LDFLAGS = ${LIBSQLCMD} ${LIBTOOLS} -L${LIBDIR2} ${LIBG} ${LIBMALLOC} \ ${LIBPOSIX4} ${LIBC} ${STRIP} CFLAGS = ${VERSION} ${INCDIRS} ${OFLAGS} ${XFLAGS} ${PFLAGS} ${UFLAGS} </code></pre> <p>This a makefile for a program of mine called <code>sqlcmd</code> (a name chosen a decade and more before Microsoft created a command of the same name). I assume that the <code>make</code> program has a rule for compiling C code to object like:</p> <pre><code>${CC} ${CFLAGS} -c $*.c </code></pre> <p>and that the rule for linking a program from a set of object files listed in the macro OBJECTS looks like:</p> <pre><code>${CC} ${CFLAGS} -o $@ ${OBJECTS} ${LDFLAGS} </code></pre> <p>As you can see, there are separately settable macros for the ESQLC_VERSION (the version of Informix ESQL/C in use, derived by default by runing a script <code>esqlcver</code>), then the include directories via INC1 to INC5 and INCFLAGS (there can be quite a lot of these, depending on platform), and optimizer flags (OFLAGS), extra flags (CFLAGS), user-defined flags (UFLAGS - an idiom I use in most of my makefiles; it allows the user to set UFLAGS on the <code>make</code> command line and add an extra flag to the build), and a bunch of library-related macros. This is what it takes for my development makefile to be tunable with minimal fuss to my development platform, which can be Linux, Solaris or MacOS X. For consumers of the program, there is a <code>configure</code> script generated by <code>autoconf</code>, so they don't have to worry about getting those bits right. However, that has a strong genetic resemblance to this code, including the UFLAGS option.</p> <p>Note that many systems for makefile building have a mechanism for setting CFLAGS faintly similar to this - and simply assigning to CFLAGS undoes the good work done by the system. But you have to understand your makefile to be able to modify it sanely.</p> <p>]</p>