This website works better with JavaScript
首页
发现
帮助
登录
TestOrg
/
HelloWorld
关注
3
点赞
0
派生
0
文件
合并请求
0
浏览代码
Implement very simple makefile
DricomDragon
5 年之前
父节点
2747badefe
当前提交
384138afb2
共有
1 个文件被更改
,包括
5 次插入
和
0 次删除
分列视图
显示文件统计
5
0
makefile
+ 5
- 0
makefile
查看文件
@@ -0,0 +1,5 @@
+hello.out: main.cpp
+ g++ main.cpp -o hello.out
+
+clean:
+ rm hello.out