make 안에서
all:
@gcc helloworld.c
이런식으로 구성하면
해당 구문의 명령은 출력되지 않고
에러 메시지만 출력하게 된다.
[링크 : http://stackoverflow.com/questions/3148492/makefile-silent-remove]
| Command Echoing Normally  When a line starts with `@', the echoing of that line is suppressed. The `@' is discarded before the command is passed to the shell. Typically you would use this for a command whose only effect is to print something, such as an  @echo About to make distribution files When  The `-s' or `--silent' flag to  | 
'프로그램 사용 > make, configure' 카테고리의 다른 글
| makefile 병렬 대비하기 (0) | 2015.11.30 | 
|---|---|
| make burn 0.0.0 ??? (0) | 2014.11.11 | 
| cmake 사용 (0) | 2011.10.07 | 
| cross compile 초기화 하기 (0) | 2010.05.18 | 
| cmake - cross make (0) | 2010.04.06 | 






