1# Jamfile.jam 2# 3# Copyright 2012 Steven Watanabe 4# 5# Distributed under the Boost Software License Version 1.0. (See 6# accompanying file LICENSE_1_0.txt or copy at 7# http://www.boost.org/LICENSE_1_0.txt) 8 9project /boost/architecture 10 : requirements 11 -<conditional>@boostcpp.deduce-address-model 12 -<conditional>@boostcpp.deduce-architecture 13 ; 14 15obj 32 : 32.cpp ; 16obj 64 : 64.cpp ; 17 18obj arm : arm.cpp ; 19obj combined : combined.cpp ; 20obj mips1 : mips1.cpp ; 21obj power : power.cpp ; 22obj riscv : riscv.cpp ; 23obj sparc : sparc.cpp ; 24obj x86 : x86.cpp ; 25obj s390x : s390x.cpp ; 26