blob: 44b36e66db9d28b4c600eea99c37b80d02623d4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/make -f
include ../source.mk
nop:
@:
build:
oh-autoconfigure
oh-autobuild
touch $@
install: build
oh-autoinstall
rm -f dest/usr/share/info/dir
mkdir -p dest/usr/share/doc/m4/examples
cp -p src/examples/* dest/usr/share/doc/m4/examples
rm -f dest/usr/share/doc/m4/examples/Makefile*
rm -f dest/usr/share/doc/m4/examples/COPYING
oh-fixperms
oh-strip
oh-installfiles
oh-shlibdeps
|