blob: 6a35d2da034b2af8c6461d12f1b634c1eca8d285 (
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
|
#!/usr/bin/make -f
include ../source.mk
nop:
@:
configure:
oh-autoconfigure -s src/unix -- \
--enable-shared \
--enable-threads \
--enable-dll-unloading \
--disable-rpath \
--enable-man-symlinks
touch $@
build: configure
oh-autobuild -s src/unix
touch $@
install: build
oh-autoinstall -s src/unix -- \
MANN_INSTALL_DIR='$$(MAN_INSTALL_DIR)/man3'
oh-fixperms
oh-strip
oh-installfiles
|