Linux 之Makefile文件


test:test.o
    gcc test.o -o test
test.o:test.s
    gcc -c test.s -o test.o
test.s:test.i
    gcc -S test.i -o test.s
test.i:test.c
    gcc -E test.c -o test.i
.PHONY:clean
clean:
    rm -f test.s test.i test.o test

本文出自 “写的质量还是低” 博客,谢绝转载!

你可能感兴趣的:(linux)