This website works better with JavaScript
首頁
探索
說明
登入
TestOrg
/
HelloWorld
關註
3
讚好
0
複刻
0
Files
合併請求
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