• jiyokim 이모티콘 출력

  • prerequisite (youngcho)

  • Makefile 강좌

    suffix rule 과 내부 매크로 등에 대한 내용

    GNU Make 강좌: 매크로(Macro) 와 확장자(Suffix) 규칙

  • *.cpp 모두 출력하기

    ls -l | awk '{ print $9 }' | grep .cpp | sed 's/.cpp$/.cpp \\\\/'
    
  • *.hpp 모두 출력하기

    ls -l | awk '{ print $9 }' | grep .hpp | sed 's/.hpp$/.hpp \\\\/'
    
  • makeflie 의 SRC 매크로에 넣을 *.c 모두 출력하기

    ls -l | awk '{ print $9 }'| sed 's/.c$/.c \\\\/'
    
    ctags -x *.c | awk '{ print $3 }'
    
  • Makefile targets : normal-prerequisites | order-only-prerequisites (youngcho)