-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
此Makefile用于自动化拉取gfxstream,gfxstream_ffi源码并构建gfxstream
无 Signed-off-by: mozixun <ronforever@outlook.com>
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
###Rutabaga_gfxstream-For-Debian-Make-Script### | ||
build: | ||
|
||
#Build gfxstream | ||
git clone https://android.googlesource.com/platform/hardware/google/gfxstream | ||
cd gfxstream/;meson setup -Ddefault_library=static build;cd .. | ||
|
||
#Build rutabaga_gfxstream_ffi | ||
git clone https://chromium.googlesource.com/crosvm/crosvm | ||
cd crosvm/rutabaga_gfx/ffi/;meson setup -Ddefault_library=static build;cd ../../.. | ||
|
||
|
||
install: | ||
###Delete the informal symbolic link and rebuild them | ||
cd crosvm/rutabaga_gfx/ffi/ && meson install -C build && cd ../../.. | ||
cd gfxstream/;meson install -C build;cd .. | ||
|
||
|
||
clean: | ||
rm -rf gfxstream | ||
rm -rf crosvm | ||
|
||
|