Ich gehe ein zB pgm durch, um eine make-Datei zu erstellen.
http://mrbook.org/tutorials/make/
Mein Ordner eg_make_creation enthält die folgenden Dateien:
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
Error:
desktop:~/eg_make_creation$ make all
make: Nothing to be done for `all'.
Bitte helfen Sie mir zu verstehen, dieses Programm zu kompilieren.
hello
es auf dem neuesten Stand ist. Wechseln Sie clean
zu, rm -f *.o hello
bevor etwas Unerwartetes ausgeführt wird, make clean all
und führen Sie dann aus, ob dies funktioniert.
.phony: all clean
, da all
und clean
keine Dateinamen.