فهرست منبع

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