This website works better with JavaScript
Home
Explore
Help
Sign In
TestOrg
/
HelloWorld
Watch
3
Star
0
Fork
0
Files
Pull Requests
0
Browse Source
Implement very simple makefile
DricomDragon
5 years ago
parent
2747badefe
commit
384138afb2
1 changed files
with
5 additions
and
0 deletions
Split View
Show Diff Stats
5
0
makefile
+ 5
- 0
makefile
View File
@@ -0,0 +1,5 @@
+hello.out: main.cpp
+ g++ main.cpp -o hello.out
+
+clean:
+ rm hello.out