coreboot-kgpe-d16/util/crossgcc/Makefile
Martin Roth 403ba7726a Update crossgcc Makefile for new buildgcc arguments
The script `util/crossgcc/buildgcc` was rewritten in commit 85b07d68
(buildgcc: move to a package centric user interface) and the switches
changed.  This patch does the following:

- IASL was split out of the gcc builds, so needs a target of its own.
- Add clang build target
- Update the build-ARCH targets as buildgcc -G no longer builds gcc.
- Rework all the targets to use common targets to call buildgcc
- Split the tempfile clean from the regular clean
- Change the 'all' target to leave the tempfiles until all architectures
are built so that if one fails and needs a rebuild, it doesn't have to
start from scratch.
- Add an all_without_gdb target
- Add clang build to all

Change-Id: I4ff720eab6d9b72d00757fd2b632e6d9a6c25aa3
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: http://review.coreboot.org/10679
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
2015-07-12 19:04:14 +02:00

89 lines
2.6 KiB
Makefile

# if no architecture is specified, set a default
BUILD_PLATFORM ?= i386-elf
all:
$(MAKE) BUILDGCC_OPTIONS=-t build-i386 build-x64 build-armv7a build-mips build-riscv build-aarch64 \
build_clang
$(MAKE) clean_tempfiles
all_without_gdb:
$(MAKE) BUILDGCC_OPTIONS=-t build-i386-without-gdb build-x64-without-gdb build-armv7a-without-gdb \
build-mips-without-gdb build-riscv-without-gdb build-aarch64-without-gdb build_clang
$(MAKE) clean_tempfiles
build_tools: build_gcc build_iasl build_gdb
build_tools_without_gdb: build_gcc build_iasl
###########################################################
### targets to do buildgcc builds
build_gcc:
bash ./buildgcc -p $(BUILD_PLATFORM) $(if $(BUILDJOBS),-j $(BUILDJOBS)) $(BUILDGCC_OPTIONS)
build_gdb:
bash ./buildgcc -p $(BUILD_PLATFORM) -P gdb $(if $(BUILDJOBS),-j $(BUILDJOBS)) $(BUILDGCC_OPTIONS)
build_iasl:
bash ./buildgcc -P iasl $(if $(BUILDJOBS),-j $(BUILDJOBS)) $(BUILDGCC_OPTIONS)
build_clang:
bash ./buildgcc -P clang $(if $(BUILDJOBS),-j $(BUILDJOBS)) $(BUILDGCC_OPTIONS)
###########################################################
### Build with GDB ###
build-i386:
@$(MAKE) build_tools BUILD_PLATFORM=i386-elf
build-x64:
@$(MAKE) build_tools BUILD_PLATFORM=x86_64-elf
build-armv7a:
@$(MAKE) build_tools BUILD_PLATFORM=armv7a-eabi
build-aarch64:
@$(MAKE) build_tools BUILD_PLATFORM=aarch64-elf
build-mips:
@$(MAKE) build_tools BUILD_PLATFORM=mipsel-elf
build-riscv:
@$(MAKE) build_tools BUILD_PLATFORM=riscv-elf
###########################################################
### Build without GDB
build-i386-without-gdb:
@$(MAKE) build_tools_without_gdb BUILD_PLATFORM=i386-elf
build-x64-without-gdb:
@$(MAKE) build_tools_without_gdb BUILD_PLATFORM=x86_64-elf
build-armv7a-without-gdb:
@$(MAKE) build_tools_without_gdb BUILD_PLATFORM=armv7a-eabi
build-aarch64-without-gdb:
@$(MAKE) build_tools_without_gdb BUILD_PLATFORM=aarch64-elf
build-mips-without-gdb:
@$(MAKE) build_tools_without_gdb BUILD_PLATFORM=mipsel-elf
build-riscv-without-gdb:
@$(MAKE) build_tools_without_gdb BUILD_PLATFORM=riscv-elf
clean_tempfiles:
rm -rf build-*
rm -rf binutils-* gcc-* gmp-* libelf-* mpc-* mpfr-*
rm -rf llvm-* clang-tools-* cfe-* compiler-rt-*
rm -rf acpica-*
rm -rf gdb-*
clean: clean_tempfiles
rm -rf xgcc
distclean: clean
rm -rf tarballs
.PHONY: build_gcc build_iasl build_gdb build_tools build_tools_without_gdb \
build-i386-without-gdb build-x64-without-gdb build-armv7a-without-gdb \
build-aarch64-without-gdb build-mips-without-gdb build-riscv-without-gdb \
all build clean distclean clean_tempfiles all_without_gdb