blob: 4a9f97d683ced204546971ad139ade2087ab4649 (
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
|
#!/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 \
ac_cv_path_mkdir=mkdir
oh-autobuild
touch $@
install: build
oh-autoinstall
oh-fixperms
oh-strip
oh-installfiles
oh-shlibdeps
|