[완료] msys에서 재귀적 make를 하려는데 오류가 납니다.

steveyoon77의 이미지

개발환경을 바꿔보려고 <유닉스/리눅스 프로그래밍 필수 유틸리티>를 보면서 따라하는 중인데, (당연하겠지만) 예제가 리눅스에서는 잘돌아가는데 MinGW/msys에서는 의도대로 돌지가 않아서 난감합니다.
하루 종일 검색을 해봤는데도, 답을 알 수가 없어서 이렇게 질문을 드려봅니다.

책의 예제와 같이 구성을 해봤습니다.

C:\01.work\study_makefile>ls
Makefile  calendar  include  main  memo
 
C:\01.work\study_makefile>tree
폴더 PATH의 목록입니다.
볼륨 일련 번호가 0065006C 9CE6:85C3입니다.
C:.
├─calendar
├─include
├─main
└─memo

가장 바깥의 Makefile은 아래와 같구요.

C:\01.work\study_makefile>cat Makefile
export CC = gcc
#OBJ = $(patsubst %.c, %.o, $(wildcard *.c))
OBJ = memo.o calendar.o main.o
 
all : MEMO CALENDAR MAIN diary
 
MEMO :
        cd memo && make
 
CALENDAR :
        cd calendar && make
 
MAIN :
        cd main && make
 
diary : $(OBJ)
        $(CC) -o $@ $^
 
clean :
        cd memo && make clean
        cd calendar && make clean
        cd main && make clean
        -rm -rf *.o $(TARGET)

sub-directory의 Makefile들은 모두 동일하게 아래와 같습니다.
C:\01.work\study_makefile>cd memo && cat Makefile && cd ..
OBJ = $(patsubst %.c, %.o, $(wildcard *.c))
CFLAGS = -I../include
 
all : $(OBJ)
        cp -f $^ ../
 
clean :
        rm -rf *.o
 
C:\01.work\study_makefile>cd calendar && cat Makefile && cd ..
OBJ = $(patsubst %.c, %.o, $(wildcard *.c))
CFLAGS = -I../include
 
all : $(OBJ)
        cp -f $^ ../
 
clean :
        rm -rf *.o
 
C:\01.work\study_makefile>cd main && cat Makefile && cd ..
OBJ = $(patsubst %.c, %.o, $(wildcard *.c))
CFLAGS = -I../include
 
all : $(OBJ)
        cp -f $^ ../
 
clean :
        rm -rf *.o

그런데 이 소스로 리눅스(우분투)에서는 잘 돌아가는데, 윈도에서는 아래와 같이 룰을 못찾는다고 합니다. sub-directory로 가서 make하는 부분을 들어가지도 못한 모양입니다.

C:\01.work\study_makefile>make
make: *** No rule to make target `memo.o', needed by `diary'.  Stop.

최신 mingw/msys를 설치해서 make 버전은 아래와 같구요.
C:\01.work\study_makefile>make -version
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 i686-pc-msys

하루종일 구글링 하다가 결국 이렇게 질문 드립니다.
무지한 중생을 깨우쳐 주세요.

ktd2004의 이미지

타켓에 MEMO가 있고 디렉토리에 memo가 있어서
make가 이미 MEMO 타켓이 완료되었다고 판단하는 건 아닐까요?

즉, 리눅스에서는 MEMO와 memo는 다르지만 윈도우에서는 MEMO와 memo는 같으니까요..

steveyoon77의 이미지

KTD님 감사합니다. 미처 생각하지 못했던 것이었네요.
아래와 같이 수정하여 동작되는 것을 확인했습니다.

D:\00.Study\2011-08-01_make>tree
working 볼륨에 대한 폴더 경로의 목록입니다.
볼륨 일련 번호가 006B0061 BCDC:3847입니다.
D:.
├─calendar_dir
├─include
├─main_dir
└─memo_dir
 
D:\00.Study\2011-08-01_make>ls
Makefile  calendar_dir  include  main_dir  memo_dir
 
D:\00.Study\2011-08-01_make>cat Makefile
export CC = gcc
OBJ = memo.o calendar.o main.o
 
all : sub_memo sub_calendar sub_main diary
 
sub_memo :
        cd memo_dir && make
 
sub_calendar :
        cd calendar_dir && make
 
sub_main :
        cd main_dir && make
 
diary : $(OBJ)
        $(CC) -o $@ $^
 
clean :
        cd memo_dir && make clean
        cd calendar_dir && make clean
        cd main_dir && make clean
        -rm -rf *.o $(TARGET)

댓글 달기

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