diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-06-12 00:37:38 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-06-12 00:37:38 (EDT) |
commit | 6acff28155b15b61ae53ea8c18334c9ed754fce8 (patch) | |
tree | e643152acf72343872ed43567622f3af552be25f | |
parent | 082630c5802d24ee759072270710d5e823aa5fa2 (diff) |
build: Add build and install targets.
-rwxr-xr-x | build | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -4,3 +4,18 @@ include ../source.mk nop: @: + +build: + oh-autoconfigure + oh-autobuild + if [ 'x$(OPK_BUILD_ARCH)' = 'x$(OPK_HOST_ARCH)' ]; then \ + oh-autotest; \ + fi + touch $@ + +install: build + oh-autoinstall + rm dest/usr/lib/$(OPK_HOST_ARCH)/libgpg-error.la + oh-fixperms + oh-strip + oh-installfiles |