Parcourir la source

Implement very simple makefile

DricomDragon il y a 5 ans
Parent
commit
384138afb2
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  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