FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
IncludeOS/vmbuild/Makefile at master · read-later/IncludeOS · GitHub
read-later
/
IncludeOS
Public
forked from
includeos/IncludeOS
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
IncludeOS
/
vmbuild
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
18 lines (12 loc) · 261 Bytes
Breadcrumbs
IncludeOS
/
vmbuild
/
Makefile
Copy path
File metadata and controls
18 lines (12 loc) · 261 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CPP
=clang++-3.6
CPPOPTS
= -std=c++11 -c -Wall -Wextra -O3
OBJS
= vmbuild.o
OUT
= vmbuild
.cpp.o
:
@
$(
CPP
)
$(
CPPOPTS
)
$<
-o
$@
all
:
$(
OBJS
)
@
echo
"
>>> Building vmbuilder
"
@
$(
CPP
)
$(
OBJS
)
-o
$(
OUT
)
@
echo
"
* Done \n
"
clean
:
$(
RM
)
$(
OBJS
)
$(
OUT
)
*
~
Back
|
FazBrowse Home
|
New Git URL