瀏覽代碼

Implement very simple makefile

DricomDragon 5 年之前
父節點
當前提交
384138afb2
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      makefile

+ 5 - 0
makefile

@@ -0,0 +1,5 @@
+hello.out: main.cpp
+	g++ main.cpp -o hello.out
+
+clean:
+	rm hello.out