linux에서 컴파일 하는 방법

cc -c hello.c => hello.o
cc -o hello(실행파일 이름) hello.o(object 파일들) => hello

Comments