File tree Expand file tree Collapse file tree 3 files changed +18
-11
lines changed Expand file tree Collapse file tree 3 files changed +18
-11
lines changed Original file line number Diff line number Diff line change 1
- /src /include
2
- /src /toolchain
3
- /releases
1
+ debian /*
2
+ ! debian /debian
3
+ src /include
4
+ src /toolchain
5
+ releases /
6
+
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ VERSION = 0.0.1
3
3
OUTPUT_FILE_NAME = $(NAME ) -$(VERSION )
4
4
COMMON_FILES = include toolchain makefiles
5
5
6
+ .PHONY : fetch
7
+ fetch :
8
+ cd src && ./fetch.sh
9
+
6
10
.PHONY : zip
7
11
zip :
8
12
cd src && zip -r " ../releases/$( OUTPUT_FILE_NAME) .zip" $(COMMON_FILES ) install.sh
18
22
19
23
.PHONY : deb
20
24
deb :
25
+ cd debian/ && rm -r $(OUTPUT_FILE_NAME ) $(NAME ) _$(VERSION ) .orig.tar.gz * .buildinfo * .changes * .debian.tar.xz * .dsc 2> /dev/null || true
21
26
mkdir debian/$(OUTPUT_FILE_NAME )
22
27
cd src && cp -r $(COMMON_FILES ) Makefile ../debian/$(OUTPUT_FILE_NAME ) /
23
28
cd debian && tar -zcf $(NAME ) _$(VERSION ) .orig.tar.gz $(OUTPUT_FILE_NAME )
24
29
cp -r debian/debian debian/$(OUTPUT_FILE_NAME ) /
25
30
cd debian/$(OUTPUT_FILE_NAME ) && dpkg-buildpackage -us -uc
26
31
mv debian/* .deb releases/
27
- cd debian && rm -r $( OUTPUT_FILE_NAME ) $( NAME ) _ $( VERSION ) .orig.tar.gz * .buildinfo * .changes * .debian.tar.xz * .dsc
32
+
Original file line number Diff line number Diff line change @@ -55,13 +55,12 @@ include_headers=(
55
55
" art/compiler/dex/quick/*.h"
56
56
" art/compiler/dex/quick_compiler_callbacks.h"
57
57
" art/compiler/dex/*.h"
58
- " art/compiler/optimizing/*.h"
59
- " art/compiler/optimizing/artist/env/*.h"
60
- " art/compiler/optimizing/artist/verbose_printer.h"
61
- " art/compiler/optimizing/artist/injection/*.h"
62
- " art/compiler/optimizing/artist/*.h"
63
- " art/compiler/optimizing/artist/modules/*.h"
64
- " art/compiler/optimizing/artist/filtering/*.h"
58
+ " art/compiler/optimizing/artist/api/env/*.h"
59
+ " art/compiler/optimizing/artist/api/filtering/*.h"
60
+ " art/compiler/optimizing/artist/api/injection/*.h"
61
+ " art/compiler/optimizing/artist/api/io/*.h"
62
+ " art/compiler/optimizing/artist/api/modules/*.h"
63
+ " art/compiler/optimizing/artist/api/utils/*.h"
65
64
" art/compiler/linker/*.h"
66
65
" art/compiler/linker/x86/relative_patcher_x86_base.h"
67
66
" art/compiler/linker/x86/relative_patcher_x86.h"
You can’t perform that action at this time.
0 commit comments