summaryrefslogtreecommitdiffstats
path: root/tdb
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2008-10-04 11:13:48 -0400
committerSimo Sorce <idra@samba.org>2008-10-04 11:14:49 -0400
commit36c304580b49ea6ce445a68ac77b08405b983275 (patch)
tree29adbf8efb7536dcdaf1187c88a46492f2c465fc /tdb
parent4458162a943a432b5f8517182e2ee7aab2590f85 (diff)
downloadsssd-36c304580b49ea6ce445a68ac77b08405b983275.tar.gz
sssd-36c304580b49ea6ce445a68ac77b08405b983275.tar.xz
sssd-36c304580b49ea6ce445a68ac77b08405b983275.zip
Make it possible to pass extra CFLAGS and LDFLAGS by passing
them on the command line before calling makefiles
Diffstat (limited to 'tdb')
-rw-r--r--tdb/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdb/Makefile.in b/tdb/Makefile.in
index 9915d8826..a9ffc3e56 100644
--- a/tdb/Makefile.in
+++ b/tdb/Makefile.in
@@ -14,9 +14,9 @@ srcdir = @srcdir@
builddir = @builddir@
sharedbuilddir = @sharedbuilddir@
INSTALLCMD = @INSTALL@
-CPPFLAGS = @CPPFLAGS@ -I$(srcdir)/include -Iinclude
-CFLAGS = $(CPPFLAGS) @CFLAGS@
-LDFLAGS = @LDFLAGS@
+CPPFLAGS += @CPPFLAGS@ -I$(srcdir)/include -Iinclude
+CFLAGS += $(CPPFLAGS) @CFLAGS@
+LDFLAGS += @LDFLAGS@
EXEEXT = @EXEEXT@
SHLD = @SHLD@
SHLD_FLAGS = @SHLD_FLAGS@