65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
# Aedrix root Makefile
|
|
# Copyright (C) 2012 Aaron Lindsay <aaron@aclindsay.com>
|
|
|
|
# Config options for the code itself (should be separated from the Makefile sometime)
|
|
ARCH = arm
|
|
|
|
# Config options concerning the build process itself
|
|
VERBOSE = 0 # 1 shows all compiler flags, 0 shows cleaner output
|
|
|
|
# Define the tools to be used
|
|
TOOL_PREFIX = arm-elf-
|
|
AS = $(TOOL_PREFIX)as
|
|
CC = $(TOOL_PREFIX)gcc
|
|
LD = $(TOOL_PREFIX)ld
|
|
OBJCPY = $(TOOL_PREFIX)objcopy
|
|
|
|
# Define the flags we'll need for our tools
|
|
INCLUDES = -I include
|
|
KCFLAGS = -g -Wall -Wextra -Werror -nostdlib -nostartfiles -fno-builtin -std=gnu99 $(INCLUDES)
|
|
KLDFLAGS = -T link.ld -L /usr/lib/gcc/arm-elf/4.7.0/
|
|
EXTRA_LIBS = -lgcc
|
|
|
|
KOBJS =
|
|
|
|
include boot/Makefile.inc
|
|
include kernel/Makefile.inc
|
|
include devices/Makefile.inc
|
|
|
|
all: aedrix-kernel.img aedrix-kernel.elf
|
|
|
|
aedrix-kernel.elf: $(KOBJS)
|
|
$(if $(VERBOSE:1=),@echo ' LD $@')
|
|
$(if $(VERBOSE:1=),@)$(LD) $(KLDFLAGS) -o $@ $(KOBJS) $(EXTRA_LIBS)
|
|
|
|
aedrix-kernel.img: aedrix-kernel.elf
|
|
$(if $(VERBOSE:1=),@echo ' OBJCPY $@')
|
|
$(if $(VERBOSE:1=),@)$(OBJCPY) $< -O binary $@
|
|
|
|
%.o: %.c
|
|
$(if $(VERBOSE:1=),@echo ' CC $@')
|
|
$(if $(VERBOSE:1=),@)$(CC) $(KCFLAGS) -c -o $@ $<
|
|
|
|
# Assembly files without preprocessor directives
|
|
%.o: %.s
|
|
$(if $(VERBOSE:1=),@echo ' AS $@')
|
|
$(if $(VERBOSE:1=),@)$(AS) -o $@ $<
|
|
|
|
# Assembly files with preprocessor directives
|
|
%.o: %.S
|
|
$(if $(VERBOSE:1=),@echo ' AS $@')
|
|
$(if $(VERBOSE:1=),@)$(AS) -o $@ $<
|
|
|
|
.PHONY : clean
|
|
clean:
|
|
@echo ' CLEAN *.o'
|
|
@rm -f $(KOBJS)
|
|
@echo ' CLEAN aedrix-kernel.elf'
|
|
@rm -f aedrix-kernel.elf
|
|
@echo ' CLEAN aedrix-kernel.img'
|
|
@rm -f aedrix-kernel.img
|
|
|
|
.PHONY: boot
|
|
boot: aedrix-kernel.elf
|
|
@qemu-system-arm -m 1024 -M vexpress-a9 -kernel aedrix-kernel.elf -serial stdio
|