SRCS = boot.c LDFLAGS = -flto -T linker.ld -nostdlib -Os CFLAGS = -flto -ffreestanding -fno-builtin -fno-pie -Wall -std=c2x -m16 -nostdlib -Os -nostartfiles -r %.o: %.c $(CC) $^ -o $@ $(CFLAGS) bin: $(SRCS:.c=.o) $(CC) $(LDFLAGS) -o bin $^ all: bin clean: $(RM) $(SRCS:.c=.o) bin