博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
makefile
阅读量:4222 次
发布时间:2019-05-26

本文共 149 字,大约阅读时间需要 1 分钟。

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

转载地址:http://jaomi.baihongyu.com/

你可能感兴趣的文章
MySql最简单的触发器例子
查看>>
全选反选按钮简单例子
查看>>
Solr高效率索引查询简介
查看>>
jquery实现在页面上实现tr排序并后台处理详解
查看>>
浅谈jsp、freemarker、velocity区别
查看>>
第三方QQ,Sina登录平台 JS sdk
查看>>
js中的json对象和字符串之间的转化
查看>>
Java内存溢出的详细解决方案
查看>>
solr报Bad Request request: http://localhost:8080/solr/update?wt=javabin&version=2
查看>>
solr查询参数使用说明
查看>>
FastDFS的配置、部署与API使用解读(1)Get Started with FastDFS
查看>>
模仿CSDN浏览器右下角弹出广告,兼容所有浏览器,内容可自定义,扩张性强
查看>>
对synchronized(this)的一些理解
查看>>
spring发送邮件时遇到错误org.springframework.mail.MailAuthenticationException: Authentication failed;
查看>>
jQuery 序列化表单数据 serialize() serializeArray()
查看>>
正则表达式语法
查看>>
Sphinx+MySQL5.1x+SphinxSE+mmseg中文分词
查看>>
Solr连接数据库
查看>>
spring注解中@component是什么意思
查看>>
java保留两位小数4种方法
查看>>