diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-13 10:58:40 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2006-09-13 10:58:40 +0000 |
commit | 50abc63232d784edea741beff04c366a4c9ed812 (patch) | |
tree | accac62c4997c69755e305d87fd69a8e72893acb /source/lib | |
parent | 0ef32bd81ee96d2d38e7f9ea84a84cc2945173cd (diff) | |
download | samba-50abc63232d784edea741beff04c366a4c9ed812.tar.gz samba-50abc63232d784edea741beff04c366a4c9ed812.tar.xz samba-50abc63232d784edea741beff04c366a4c9ed812.zip |
r18461: - extend make showflags
- let make test trigger showflags
metze
Diffstat (limited to 'source/lib')
-rw-r--r-- | source/lib/replace/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/lib/replace/Makefile.in b/source/lib/replace/Makefile.in index 6940673a78a..23a4239913d 100644 --- a/source/lib/replace/Makefile.in +++ b/source/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 |