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 /events/Makefile.in | |
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 'events/Makefile.in')
-rw-r--r-- | events/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/events/Makefile.in b/events/Makefile.in index 42571198..bd1e65ce 100644 --- a/events/Makefile.in +++ b/events/Makefile.in @@ -39,7 +39,7 @@ EVENTS_CFLAGS = @EVENTS_CFLAGS@ EVENTS_LDFLAGS = @EVENTS_CFLAGS@ EVENTS_LIBS = @EVENTS_LIBS@ -CFLAGS = $(CPPFLAGS) $(TALLOC_CFLAGS) $(EVENTS_CFLAGS) @CFLAGS@ +CFLAGS += $(CPPFLAGS) $(TALLOC_CFLAGS) $(EVENTS_CFLAGS) @CFLAGS@ LDFLAGS = $(TALLOC_LDFLAGS) $(EVENTS_LDFLAGS) @LDFLAGS@ LIBS = $(TALLOC_LIBS) $(EVENTS_LIBS) @LIBS@ |