[Added:
Eduardo asked: Can you post macros to do the same?
Yes, but whether they are helpful depends on how your makefiles are structured. Here's a moderately complex example from one of my makefiles.
CC = gcc -gXFLAGS = -Wall -Wshadow -Wstrict-prototypes -Wmissing-prototypes \ -DDEBUG -Wredundant-decls#CC = cc -g#XFLAGS =UFLAGS = # Always overrideable on the command lineDEPEND.mk = sqlcmd-depend.mkINSTALL.mk = sqlcmd-install.mkESQLC_VERSION = `esqlcver`OFLAGS = # -DDEBUG_MALLOC -gOFLAGS = -g -DDEBUG -O4PFLAGS = -DHAVE_CONFIG_HOFILES.o = # rfnmanip.o # malloc.o # strdup.o # memmove.oVERSION = -DESQLC_VERSION=${ESQLC_VERSION}#INC1 = <defined in sqlcmd-depend.mk>#INC2 = <defined in sqlcmd-depend.mk>INC3 = /usr/gnu/includeINC4 = ${INFORMIXDIR}/incl/esqlINC5 = . #${INFORMIXDIR}/inclINCDIRS = -I${INC3} -I${INC1} -I${INC2} -I${INC4} -I${INC5}LIBSQLCMD = libsqlcmd.aSTRIP = #-sLIBC = #-lc_sLIBMALLOC = #-lefenceLIBRDLN = -lreadlineLIBCURSES = -lcursesLIBPOSIX4 = -lposix4LIBG = #-lgLIBDIR1 = ${HOME}/libLIBDIR2 = /usr/gnu/libLIBJL1 = ${LIBDIR1}/libjl.aLIBJL2 = ${LIBDIR1}/libjlss-${ESQLC_VERSION}.aLIBTOOLS = ${LIBJL2} ${LIBJL1}LDFLAGS = ${LIBSQLCMD} ${LIBTOOLS} -L${LIBDIR2} ${LIBG} ${LIBMALLOC} \ ${LIBPOSIX4} ${LIBC} ${STRIP}CFLAGS = ${VERSION} ${INCDIRS} ${OFLAGS} ${XFLAGS} ${PFLAGS} ${UFLAGS}This a makefile for a program of mine called sqlcmd (a name chosen a decade and more before Microsoft created a command of the same name). I assume that the make program has a rule for compiling C code to object like:
${CC} ${CFLAGS} -c $*.cand that the rule for linking a program from a set of object files listed in the macro OBJECTS looks like:
${CC} ${CFLAGS} -o $@ ${OBJECTS} ${LDFLAGS}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 esqlcver), 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 make 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 configure script generated by autoconf, 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.
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.
]
