예를 들어 pgm을 통해 make 파일을 만들겠습니다.
http://mrbook.org/tutorials/make/
내 폴더 eg_make_creation에는 다음 파일이 포함되어 있습니다.
desktop:~/eg_make_creation$ ls
factorial.c functions.h hello hello.c main.c Makefile
Makefile
# I am a comment, and I want to say that the variable CC will be
# the compiler to use.
CC=gcc
# Hwy!, I am comment no.2. I want to say that CFLAGS will be the
#options I'll pass to the compiler
CFLAGS=-c -Wall
all:hello
hello:main.o factorial.o hello.o
$(CC) main.o factorial.o hello.o -o hello
main.o:main.c
$(CC) $(CFLAGS) main.c
factorial.o:factorial.c
$(CC) $(CFLAGS) factorial.c
hello.o:hello.c
$(CC) $(CFLAGS) hello.c
clean:
rm -rf *o hello
오류:
desktop:~/eg_make_creation$ make all
make: Nothing to be done for `all'.
이 프로그램을 컴파일하는 것을 이해하도록 도와주세요.