blob: 11d7d1bd7a7d36f8c8acf6360059601af170d926 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /usr/bin/make -f
build:
cd src && \
./configure --prefix=/usr && \
make && \
cd ..
install:
cd src && \
make DESTDIR=$$(pwd)/../dest install && \
cd ..
#oh-strip -g
oh-installfiles
|