Makefile 에서 매크로 치환하기

hayarobi의 이미지

컴파일 때 쓸 include경로들이 있습니다.

일단은 cc에서 해야하기 때문에 -I가 붙어있습니다

ORA_FLAG = -I/opt/oracle/precomp/public \
             -I/opt/oracle/rdbms/public

그런데 pro*c 에서도 같은 곳을 include해야합니다. 문제는 pro*c문법에서는 -I대신 include= 를 써야한다는 것이죠. 아래처럼요.
PROC_INCFLAG = include=/opt/oracle/precomp/public \
               include=/opt/oracle/rdbms/public

경로가 한두개라면 그냥 위에처럼 하드코딩하고 말겠지만 경로가 갯수도 더 많은데다, 여러 변수에 산재해있어서 치환기능을 써 보려고 합니다. 더 큰 이유는 설치하는 머신마다 매번 메이크파일 열어서 여기저기 고치는게 너무 짜증나고 실수할 일도 많은 거였죠.

원래 메이크의 매크로 치환기능이 있는데 책을 보니 뒤에만 변경이 가능하네요. 더 찾아보니 $(patsubst a,b,$(object))로 전후 가릴 것 없이 바꾸는 기능이 있었지만 GNU make전용인지 다른 유닉스 머신에서 테스트를 해 보니 제대로 안 되는군요. 이것을 좀 더 효과적으로 바꿀 방법이 없을까요?

feanor의 이미지

includes라는 파일에 include할 디렉토리를 한 줄에 하나씩 쓰고

ORA_FLAG = `sed -e 's/^/-I/' includes`
PROC_INCFLAG = `sed -e 's/^/include=/' includes`

처럼 하면 될 듯 합니다.

hayarobi의 이미지

다만 제 상황에서는 파일을 다 몰아서 넣을 권한이 없네요. 여러 사람이 작업하는 것이라... 어쨌든 sed같은 외부 툴을 응용하는 방법도 고려해 봐야겠네요.

---------- 시그 *****
저도 세벌식을 씁니다.
M$윈도우즈, 리눅스, 맥 오에스 텐, 맥 오에스 클래식을 모두 엔드유저 수준으로 쓴답니다.
http://psg9.egloos.com

=================
잠못자는 한솔아빠

maximus의 이미지

Make 에서 사용한다면

상단에서 정의 할때

IS_PROC_INCLUDE := yes

ifneq '$(findstring yes,$(IS_PROC_INCLUDE))' ''
FLAG := include=/opt/oracle/precomp/public include=/opt/oracle/rdbms/public
else
FLAG := -I/opt/oracle/precomp/public -I/opt/oracle/rdbms/public
endif

이런식으로 할수도 있습니다.
위 예제에서 IS_PROC_INCLUDE 부분이 yes 이냐 no 이냐에 따라 달라지니까
저 부분만 그때 그때 맞춰서 include 되도록 해줘도 될 듯 합니다.

=================================
:: how about a cup of tea ? ::
=================================

=================================
:: how about a cup of tea ? ::
=================================

feanor의 이미지

경로가 많아서 FLAG를 하드코딩하지 않고자 하는 것이니 이것은 원하는 답변이 아닐 듯 합니다.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.