Selaa lähdekoodia

Implement very simple makefile

DricomDragon 5 vuotta sitten
vanhempi
commit
384138afb2
1 muutettua tiedostoa jossa 5 lisäystä ja 0 poistoa
  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