Separate ppc build related directories from m68k build.

This commit is contained in:
Krystian Bacławski
2015-08-23 17:06:09 +02:00
parent 846907908c
commit e96f4c008e
2 changed files with 10 additions and 12 deletions
+4 -6
View File
@@ -6,10 +6,8 @@
*.o
.DS_Store
.ropeproject
archives/*/
sources/
stamps/
build/
target/
host/
.build-ppc/
.build-m68k/
m68k-amigaos/
ppc-amigaos/
tmp/
+6 -6
View File
@@ -225,12 +225,12 @@ if __name__ == "__main__":
binutils='binutils-{binutils_ver}',
gcc='gcc-{gcc_ver}',
patches=path.join('{top}', 'patches'),
stamps=path.join('{top}', 'stamps'),
build=path.join('{top}', 'build'),
sources=path.join('{top}', 'sources'),
host=path.join('{top}', 'host'),
target=path.join('{top}', 'target'),
archives=path.join('{top}', 'archives', 'ppc'))
stamps=path.join('{top}', '.build-ppc', 'stamps'),
build=path.join('{top}', '.build-ppc', 'build'),
sources=path.join('{top}', '.build-ppc', 'sources'),
host=path.join('{top}', '.build-ppc', 'host'),
target=path.join('{top}', 'ppc-amigaos'),
archives=path.join('{top}', '.build-ppc', 'archives'))
if args.prefix is not None:
setvar(target=args.prefix)