This website works better with JavaScript
Página inicial
Explorar
Ajuda
Entrar
TestOrg
/
HelloWorld
Observar
3
Favorito
0
Fork
0
Arquivos
Pull Requests
0
Ver código fonte
Implement very simple makefile
DricomDragon
5 anos atrás
pai
2747badefe
commit
384138afb2
1 arquivos alterados
com
5 adições
e
0 exclusões
Visão dividida
Mostrar estatísticas do Diff
5
0
makefile
+ 5
- 0
makefile
Ver arquivo
@@ -0,0 +1,5 @@
+hello.out: main.cpp
+ g++ main.cpp -o hello.out
+
+clean:
+ rm hello.out