私はメイクファイルを作成するために、例えばpgmを通過しています。
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'.
このプログラムをコンパイルするのを理解してください。
hello
最新であることを意味します。予期しない動作が発生clean
するrm -f *.o hello
前にに変更してから、実行して動作するmake clean all
かどうかを確認してください。
.phony: all clean
ためall
、も追加する必要clean
があります。