Browse Source

Implement very simple makefile

DricomDragon 5 năm trước cách đây
mục cha
commit
384138afb2
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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