make

Linux/Linux 일반 : 2009. 2. 4. 15:25
반응형


root@realg-desktop:~# make -v
GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

This program built for i486-pc-linux-gnu

root@realg-desktop:~# make -v
# GNU Make 3.81
# Copyright (C) 2006  Free Software Foundation, Inc.
# This is free software; see the source for copying conditions.
# There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.

# This program built for i486-pc-linux-gnu

# Make data base, printed on Wed Feb  4 15:19:36 2009

# Variables

 

# No `vpath' search paths.

# No general (`VPATH' variable) search path.

# # of strings in strcache: 0
# # of strcache buffers: 0
# strcache size: total = 0 / max = 0 / min = 4096 / avg = 0
# strcache free: total = 0 / max = 0 / min = 4096 / avg = 0

# Finished Make data base on Wed Feb  4 15:19:36 2009


make -k : make의 실행도중 에러가 발생해도 중지 없이 계속 실행하게 한다.
make -d : make 프로그램이 돌아가면서 작업한 내용 및 정보들을 모두 출력해준다. 이를통해 make가 작업한 부분을 추적할 수 있다.
make -t : 현재 시간을 이용하여 파일 생성날짜를 바꾼다.
make -f : 특정 Makefile을 지정한다.

반응형

'Linux > Linux 일반' 카테고리의 다른 글

우분투에서 ffmpeg 설치하기  (2) 2009.02.04
`Makefile.in' 만들기  (0) 2009.01.22
ld.so.conf를 이용해서 라이브러리 경로 추가  (0) 2008.12.30
Posted by Real_G