diff options
author | Simo Sorce <idra@samba.org> | 2008-10-04 11:13:48 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2008-10-04 11:14:49 -0400 |
commit | 36c304580b49ea6ce445a68ac77b08405b983275 (patch) | |
tree | 29adbf8efb7536dcdaf1187c88a46492f2c465fc /ldb | |
parent | 4458162a943a432b5f8517182e2ee7aab2590f85 (diff) | |
download | sssd-36c304580b49ea6ce445a68ac77b08405b983275.tar.gz sssd-36c304580b49ea6ce445a68ac77b08405b983275.tar.bz2 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 'ldb')
-rw-r--r-- | ldb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ldb/Makefile.in b/ldb/Makefile.in index 8d95dae7..b8010150 100644 --- a/ldb/Makefile.in +++ b/ldb/Makefile.in @@ -51,11 +51,11 @@ LD_EXPORT_DYNAMIC = @LD_EXPORT_DYNAMIC@ SHLD = @SHLD@ SHLD_FLAGS = @SHLD_FLAGS@ -LDFLAGS = @LDFLAGS@ +LDFLAGS += @LDFLAGS@ LIBS = @LIBS@ PICFLAG = @PICFLAG@ -CFLAGS=-g -I$(srcdir)/include -Iinclude -I$(srcdir) -I$(srcdir)/.. \ +CFLAGS += -I$(srcdir)/include -Iinclude -I$(srcdir) -I$(srcdir)/.. \ $(POPT_CFLAGS) $(TALLOC_CFLAGS) $(TDB_CFLAGS) $(EVENTS_CFLAGS) \ -DLIBDIR=\"$(libdir)\" -DSHLIBEXT=\"$(SHLIBEXT)\" -DUSE_MMAP=1 @CFLAGS@ |