blob: 84eaa42dd9514afcb1acca92a8ae932e6f6759b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/usr/bin/make -f
include ../source.mk
nop:
@:
build:
oh-autoconfigure -- \
--enable-symlink-install \
--enable-verbose-makecmds \
--enable-elf-shlibs \
--disable-e2initrd-helper \
--disable-uuidd \
--disable-fuse2fs \
--disable-ubsan \
--disable-addrsan \
--disable-threadsan \
--with-multiarch=$(OPK_HOST_ARCH) \
ac_cv_path_mkdir=mkdir
oh-autobuild
touch $@
install: build
oh-autoinstall
oh-fixperms
oh-strip
oh-installfiles
oh-shlibdeps
|