Ver Fonte

Implement very simple makefile

DricomDragon há 5 anos atrás
pai
commit
384138afb2
1 ficheiros alterados com 5 adições e 0 exclusões
  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