blob: 5c3e4aa2ebbb795db6d797a81459414fd49239ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/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
|