bootsector_c/Makefile

13 lines
261 B
Makefile
Raw Normal View History

2024-10-19 17:09:19 +00:00
SRCS = boot.c
LDFLAGS = -melf_i386 -nostdlib --oformat binary -T linker.ld
CFLAGS = -fno-pie -Wall -std=c2x -m16 -nostdlib -Os -nostartfiles
%.o: %.c
$(CC) $(CFLAGS) $^ -c -o $@
all: $(SRCS:.c=.o)
$(LD) $(LDFLAGS) -o bin $^
clean:
$(RM) $(SRCS:.c=.o) bin