1.makefile 简单模板:
#makefile
myprogram:main.o test1.o
gcc main.o test1.o -o myprogram
test1.o:test1.c
gcc -c test1.c -o test1.o
main.o:main.c
gcc -c main.c -o main.o
clean:
rm -rf *.o
rm -rf myprogram
2.make
-f 指定makefile名称 例如:make -f makefile2
网友评论