[완료] Makefile 구문 질문

dwlee의 이미지

Makefile 내에 아래와 같은 부분이 있는데요,
무슨 뜻인지 알려주시면 감사드리겠습니다.. ^-^a

$(shell [ -d "$(OUTDIRPATH)" ] ... 생략)

shell 함수는 shell 명령을 수행하라는 뜻인데,
[ -d "$(OUTDIRPATH)" ] <- 이 부분이 무슨 뜻인지 모르겠습니다.

kukyakya의 이미지

/usr/bin 정도에 [ 라는 실행파일이 있을텐데 /usr/bin/[ --help 쳐보시면 친절하게 설명해줄거예요.

익명 사용자의 이미지

감사합니다 :)
help 에 설명이 나오네요ㅋ

세이군의 이미지

$(OUTDIRPATH)가 존재하는지 여부를 판단하는 부분입니다.

익명 사용자의 이미지


그런데, 한 가지 더 여쭤보고 싶은 것은^-^;

shell에서 저 명령어를 입력하면 왜 아무런 메시지가 나오지 않는 걸까요?

예) /home/dwlee/build 라는 디렉토리가 존재할 때

$ [ -d "/home/dwlee/build" ]
$

익명 사용자의 이미지

/usr/bin/에 [ 라는 실행파일이 있다는.. ==> 이거 농담으로 적으신거죠?

[ -f xxx ] = xxx라는 파일이 존재하는지 검사
[ -d xxx ] = xxx라는 디렉터리가 존재하는 지 검사

그래서 이렇게 씁니다.

if [ -f xxx ]
if [ -d xxx ]

요렇게.

쉘에서 직접 해보시려면,

$ if [ -f "/usr/bin/gcc" ] ; then echo "gcc가 있네요." ; fi;
$ if [ -d "/etc" ]; then echo "/etc가 있네요."; fi;

라고 해보시길.

익명 사용자의 이미지

/usr/bin/[ 는 농담이 아니라 실제 있는 파일입니다.
test와 같은 파일입니다.

$ man test
NAME
       test - check file types and compare values
 
SYNOPSIS
       test EXPRESSION
       test
 
       [ EXPRESSION ]
       [ ]
       [ OPTION

$ [ -d /etc ]
$ echo $?
0
$ [ -d /noetc ]
$ echo $?
1
익명 사용자의 이미지

/etc 디렉토리가 있으면 $?가 0 이라는 게 신기하네요 ㅎㅎ

보통 True면 0이 아닌 1을 사용하는데 말이에요ㅋ

익명 사용자의 이미지


알려주신대로 해보니깐 확인해 볼 수가 있네요 :)

./ 과 같이 상대 경로는 안 되고 절대 경로만 되네요~ㅎㅎ

익명 사용자의 이미지

$ which [
/usr/bin/[

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.