ARCH=i686 # define compiler, linker, archiver and strip and their flags # AS := i686-elf-as CC := i686-elf-gcc CCFLAGS := -Wall -Wextra -Wpedantic -fanalyzer -ffreestanding -std=gnu11 -mgeneral-regs-only CCFLAGS += $(shell echo ${CONFIG_CCFLAGS}) LD := i686-elf-ld LDFLAGS := -static -nostdlib LDFLAGS += $(shell echo ${CONFIG_LDFLAGS}) AR := i686-elf-ar ARFLAGS := -crus STRIP := i686-elf-strip