bootsector_tictactoe/Makefile
2024-10-20 02:10:44 +05:00

13 lines
277 B
Makefile

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)
all: $(SRCS:.c=.o)
$(CC) $(LDFLAGS) -o bin $^
clean:
$(RM) $(SRCS:.c=.o) bin