Tôi đang đi qua một ví dụ pgm để tạo một tệp tạo.
http://mrbook.org/tutorials/make/
Thư mục eg_make_creation của tôi chứa các tệp sau,
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
lỗi:
desktop:~/eg_make_creation$ make all
make: Nothing to be done for `all'.
Xin hãy giúp tôi hiểu để biên dịch chương trình này.
hello
là đã được cập nhật. Thay đổi clean
thành rm -f *.o hello
trước khi nó thực hiện điều gì đó không mong muốn, sau đó chạy make clean all
và xem liệu điều đó có hoạt động không.
.phony: all clean
, vì all
và clean
không phải tên tệp.