diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-13 10:58:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:33 -0500 |
commit | dca9292c1562aadf45195b49dbfd19d036fbad45 (patch) | |
tree | 03cafea2fc7756b98ff309f231df48c5b8a3d76b /source4 | |
parent | 4c0b19277a495b33869f447166d03a0e1e163b72 (diff) | |
download | samba-dca9292c1562aadf45195b49dbfd19d036fbad45.tar.gz samba-dca9292c1562aadf45195b49dbfd19d036fbad45.tar.bz2 samba-dca9292c1562aadf45195b49dbfd19d036fbad45.zip |
r18461: - extend make showflags
- let make test trigger showflags
metze
(This used to be commit 43c1d775b900b305345afe394383b78e83e4e5cb)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/replace/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/lib/replace/Makefile.in b/source4/lib/replace/Makefile.in index 6940673a78..23a4239913 100644 --- a/source4/lib/replace/Makefile.in +++ b/source4/lib/replace/Makefile.in @@ -21,8 +21,9 @@ all: showflags libreplace.a testsuite showflags: @echo 'libreplace will be compiled with flags:' + @echo ' CC = $(CC)' @echo ' CFLAGS = $(CFLAGS)' - @echo ' LIBS = $(LIBS)' + @echo ' LIBS = $(LIBS)' install: all mkdir -p $(libdir) @@ -31,7 +32,7 @@ install: all libreplace.a: $(OBJS) ar -rcsv $@ $(OBJS) -test: testsuite +test: all ./testsuite installcheck: install test |