diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-14 17:12:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:57:17 -0500 |
commit | 36eeba774213ee94c5b7307257795350c4b80c95 (patch) | |
tree | 4d48ee1d1e813b386e76c7c29bc9d203b6bba3f9 /source4 | |
parent | d93dec3efc7a6bf57a902574120c5b0a29a8d30d (diff) | |
download | samba-36eeba774213ee94c5b7307257795350c4b80c95.tar.gz samba-36eeba774213ee94c5b7307257795350c4b80c95.tar.bz2 samba-36eeba774213ee94c5b7307257795350c4b80c95.zip |
r14386: - use echo "..." instead of echo ... in all places
- make the output of the CC_CHECKER more readable when you have a fast box
and the each .c file take less than 1s.
metze
(This used to be commit 606c0388183cbc6a93eaf8f0209136c0aac96727)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/main.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/main.mk b/source4/main.mk index 4ccfe0aafa..eceb90342a 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -319,7 +319,7 @@ unused_macros: .SUFFIXES: .x .c .et .y .l .d .o .h .h.gch .a .so .1 .1.xml .3 .3.xml .5 .5.xml .7 .7.xml .8 .8.xml .ho .c.ho: - @echo Compiling $*.c with host compiler + @echo "Compiling $*.c with host compiler" @$(HOSTCC) `script/cflags.pl $@` $(CFLAGS) -c $*.c -o $@ .c.d: @@ -328,14 +328,14 @@ unused_macros: .c.o: @if test -n "$(CC_CHECKER)"; then \ - echo Call \'$(CC_CHECKER)\' for $<; \ + echo "Checking $< with '$(CC_CHECKER)'"; \ $(CC_CHECKER) `script/cflags.pl $@` $(CFLAGS) $(PICFLAG) -c $< -o $@; \ fi - @echo Compiling $< + @echo "Compiling $<" @$(CC) `script/cflags.pl $@` $(CFLAGS) $(PICFLAG) -c $< -o $@ .h.h.gch: - @echo Precompiling $< + @echo "Precompiling $<" @$(CC) `script/cflags.pl $@` $(CFLAGS) $(PICFLAG) -c $< -o $@ .y.c: |