diff options
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/ldb/Makefile.in | 7 | ||||
-rw-r--r-- | source4/lib/replace/Makefile.in | 7 | ||||
-rw-r--r-- | source4/lib/talloc/Makefile.in | 7 | ||||
-rw-r--r-- | source4/lib/tdb/Makefile.in | 7 |
4 files changed, 24 insertions, 4 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in index af47667bed..f25a676723 100644 --- a/source4/lib/ldb/Makefile.in +++ b/source4/lib/ldb/Makefile.in @@ -53,7 +53,12 @@ EXAMPLES = examples/ldbreader examples/ldifreader DIRS = lib bin common ldb_tdb ldb_ldap ldb_sqlite3 modules tools examples tdb talloc -all: dirs $(OBJS) $(LDB_LIB) $(BINS) $(EXAMPLES) manpages +all: showflags dirs $(OBJS) $(LDB_LIB) $(BINS) $(EXAMPLES) manpages + +showflags: + @echo 'ldb will be compiled with flags:' + @echo ' CFLAGS = $(CFLAGS)' + @echo ' LIBS = $(LIBS)' .c.o: @echo Compiling $*.c diff --git a/source4/lib/replace/Makefile.in b/source4/lib/replace/Makefile.in index 502dacbd2a..b2075d953b 100644 --- a/source4/lib/replace/Makefile.in +++ b/source4/lib/replace/Makefile.in @@ -17,7 +17,12 @@ CFLAGS=-I. -I@libreplacedir@ @CFLAGS@ OBJS = @LIBREPLACEOBJ@ -all: libreplace.a testsuite +all: showflags libreplace.a testsuite + +showflags: + @echo 'libreplace will be compiled with flags:' + @echo ' CFLAGS = $(CFLAGS)' + @echo ' LIBS = $(LIBS)' install: all mkdir -p $(libdir) diff --git a/source4/lib/talloc/Makefile.in b/source4/lib/talloc/Makefile.in index 73336c2933..4effa96415 100644 --- a/source4/lib/talloc/Makefile.in +++ b/source4/lib/talloc/Makefile.in @@ -19,7 +19,12 @@ EXTRA_TARGETS = @DOC_TARGET@ LIBOBJ = @TALLOCOBJ@ @LIBREPLACEOBJ@ -all: libtalloc.a testsuite $(EXTRA_TARGETS) +all: showflags libtalloc.a testsuite $(EXTRA_TARGETS) + +showflags: + @echo 'talloc will be compiled with flags:' + @echo ' CFLAGS = $(CFLAGS)' + @echo ' LIBS = $(LIBS)' testsuite: $(LIBOBJ) testsuite.o $(CC) $(CFLAGS) -o testsuite testsuite.o $(LIBOBJ) $(LIBS) diff --git a/source4/lib/tdb/Makefile.in b/source4/lib/tdb/Makefile.in index 64a6dc0891..d305518370 100644 --- a/source4/lib/tdb/Makefile.in +++ b/source4/lib/tdb/Makefile.in @@ -19,7 +19,12 @@ TDB_OBJ = @TDBOBJ@ @LIBREPLACEOBJ@ DIRS = lib bin common tools examples -all: dirs $(PROGS) +all: showflags dirs $(PROGS) + +showflags: + @echo 'tdb will be compiled with flags:' + @echo ' CFLAGS = $(CFLAGS)' + @echo ' LIBS = $(LIBS)' .c.o: @echo Compiling $*.c |