diff options
author | P. J. McDermott <pjm@nac.net> | 2012-10-11 13:49:57 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-10-11 13:49:57 (EDT) |
commit | 8a8f59637149340350d7e9bf8c1ed3867c2484ed (patch) | |
tree | 935d8dc1dd7d79c4d73413784125139ca5ccda59 | |
parent | b69412e04774af5af52752eb6a48e2decdcad47a (diff) |
Don't use *-arch and *-indep makefile targets.
-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 |