diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-03 21:55:50 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-03 23:23:42 (EST) |
commit | 95e45605b2f1b4648e263d6cc9f8d605ba0a0982 (patch) | |
tree | f8dc53bd31013f3cf649413a7f2af2c5d67454f0 | |
parent | de26a616a600c3542e8d3fdf5638fe6c6b9f0cc5 (diff) |
build: Add
-rwxr-xr-x | build | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +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 + oh-fixperms + oh-strip + oh-installfiles |