summaryrefslogtreecommitdiffhomepage
path: root/example/mb2/makefile
blob: 097644789745f6bc4d3ff17d0cf0adaef4a34b57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# MIT License, Copyright (c) 2021 Marvin Borner
# Gets called by main makefile (their variables are exported)

OBJS = entry_asm.o main.o

all: compile

%.o: %.c
	@$(CC) -c $(CFLAGS) $< -o $@

%_asm.o: %.asm
	@$(AS) $(ASFLAGS) $< -o $@

compile: $(OBJS)
	@mkdir -p $(BLD)/examples/
	@$(LD) -N -z max-page-size=0x1000 -eboot_entry -Tlink.ld -o $(BLD)/examples/mb2.elf $+