Estoy pasando por un pgm por ejemplo para crear un archivo make.
http://mrbook.org/tutorials/make/
Mi carpeta eg_make_creation contiene los siguientes archivos,
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'.
Ayúdame a comprender cómo compilar este programa.
hello
está actualizado. Cambie clean
a rm -f *.o hello
antes de que haga algo inesperado, luego ejecute make clean all
y vea si funciona.
.phony: all clean
, ya que all
y clean
no son nombres de archivo.