Я проходжу, наприклад, 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
Makefilefile
# 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'.
Будь ласка, допоможіть мені зрозуміти компіляцію цієї програми.
hello
, що оновлено. Змініть clean
на, rm -f *.o hello
перш ніж це зробить щось несподіване, а потім запустіть make clean all
і перевірте, чи це працює.
.phony: all clean
, оскільки all
і clean
не є іменами файлів.