[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
make 4.1 has different silent functionality
From: |
drwho |
Subject: |
make 4.1 has different silent functionality |
Date: |
Wed, 6 Apr 2016 13:54:34 -0400 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 |
Hello,
Make version 4.1 in Ubuntu 16.04 has different behaviour using the @
(silent) . From my makefile.....
%o : %c
@echo "CC $<"
@$(CC) -c $(CFLAGS) $(INCDIR) $< -o $@
used to produce this output in older versions of make.....
CC main.c
CC bob.c
CC sally.c
now I get this.....
gcc -DI_SHOULD_NOT_SEE_THIS -c -o main.o main.c
gcc -DI_SHOULD_NOT_SEE_THIS -c -o bob.o bob.c
gcc -DI_SHOULD_NOT_SEE_THIS -c -o sally.o sally.c
The @ before the $(CC) doesn't silent anymore?
Jon
make_test.tar.gz
Description: application/gzip
- make 4.1 has different silent functionality,
drwho <=