This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
TestOrg
/
HelloWorld
Suivre
3
Voter
0
Fork
0
Fichiers
Pull Requests
0
Parcourir la source
Implement very simple makefile
DricomDragon
il y a 5 ans
Parent
2747badefe
commit
384138afb2
1 fichiers modifiés
avec
5 ajouts
et
0 suppressions
Vue séparée
Afficher les stats Diff
5
0
makefile
+ 5
- 0
makefile
Voir le fichier
@@ -0,0 +1,5 @@
+hello.out: main.cpp
+ g++ main.cpp -o hello.out
+
+clean:
+ rm hello.out