23 lines
805 B
Makefile
23 lines
805 B
Makefile
include ../kernel.settings
|
|
SRCS = $(shell find . -name '*.cpp')
|
|
OBJS = $(addsuffix .o,$(basename $(SRCS)))
|
|
AS = $(PREFIX)gcc
|
|
CPP = $(PREFIX)g++
|
|
LD = $(PREFIX)ld
|
|
ASFLAGS = $(ARCHFLAGS)
|
|
CPPFLAGS = $(ARCHFLAGS) -Wall -fno-stack-protector -nostdinc -std=c++14 -Iinclude/ -Ic_include/ -fno-rtti -fno-exceptions -ffreestanding -fno-builtin -Werror -nostdlib -fno-use-cxa-atexit -Wextra -Wno-unused -g -fpie
|
|
LDFLAGS = -Ttest-$(arch).ld -L/opt/lib/gcc/$(libpath)/6.1.0/
|
|
ifeq ($(arch),3ds)
|
|
ASFLAGS += -mcpu=mpcore -mlittle-endian
|
|
CPPFLAGS += -mcpu=mpcore -mlittle-endian
|
|
endif
|
|
test.elf: $(OBJS) $(arch)/syscall.o
|
|
$(LD) $(LDFLAGS) -o $@ $^ -lgcc
|
|
|
|
%.o: %.cpp
|
|
$(CPP) $(CPPFLAGS) -c -o $@ $^
|
|
$(arch)/syscall.o: $(arch)/syscall.S
|
|
$(AS) $(ASFLAGS) -c -o $@ $^
|
|
clean:
|
|
rm $(OBJS) $(arch)/syscall.o
|
|
.PHONY: clean
|