Makefile

2019-08-09  本文已影响0人  十二找十三

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
上一篇下一篇

猜你喜欢

热点阅读