diff options
-rwxr-xr-x | build | 22 |
1 files changed, 4 insertions, 18 deletions
@@ -1,28 +1,14 @@ #! /usr/bin/make -f -build-arch: +build: cd src && \ ./configure --prefix=/usr \ --build=$${OB_BUILD_ARCH_GNU} --host=$${OB_HOST_ARCH_GNU} && \ make -install-arch: +install: cd src && \ make DESTDIR="$$(pwd)/../dest" install-exec && \ cd .. - oh-strip -g - oh-installfiles -B - -build-indep: - cd src && \ - ./configure --prefix=/usr - -install-indep: - cd src && \ - make DESTDIR="$$(pwd)/../dest" install-data && \ - cd .. - oh-installfiles -A - -build: build-arch build-indep - -install: install-arch install-indep + #oh-strip -g + oh-installfiles |