Преглед изворни кода

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