This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
TestOrg
/
HelloWorld
Seguir
3
Destacar
0
Fork
0
Archivos
Pull Requests
0
Explorar el Código
Implement very simple makefile
DricomDragon
hace 5 años
padre
2747badefe
commit
384138afb2
Se han
modificado 1 ficheros
con
5 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
5
0
makefile
+ 5
- 0
makefile
Ver fichero
@@ -0,0 +1,5 @@
+hello.out: main.cpp
+ g++ main.cpp -o hello.out
+
+clean:
+ rm hello.out