This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
TestOrg
/
HelloWorld
Segui
3
Vota
0
Forka
0
File
Pull Requests
0
Sfoglia il codice sorgente
Implement very simple makefile
DricomDragon
5 anni fa
parent
2747badefe
commit
384138afb2
1 ha cambiato i file
con
5 aggiunte
e
0 eliminazioni
Visualizzazione separata
Mostra Diff Stats
5
0
makefile
+ 5
- 0
makefile
Vedi File
@@ -0,0 +1,5 @@
+hello.out: main.cpp
+ g++ main.cpp -o hello.out
+
+clean:
+ rm hello.out