makefile

来源:互联网 发布:应收会计工作内容知乎 编辑:程序博客网 时间:2024/04/29 05:12
include ./Config.mk

test:test.o
        $(call replace_intermediate_file)
        gcc -o test test.o

test.o:test.c
        gcc -c test.c

.PHONY : clean
clean:
        rm test test.o



0 0
原创粉丝点击