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