Explorar el Código

Implement very simple makefile

DricomDragon hace 5 años
padre
commit
384138afb2
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  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