10 lines
188 B
Makefile
10 lines
188 B
Makefile
OBJS = main.asm.o ports.asm.o \
|
|
gdt.asm.o idt.asm.o \
|
|
interrupts.asm.o header.asm.o
|
|
|
|
ASM = nasm
|
|
ASMFLAGS = -f elf32
|
|
all: $(OBJS)
|
|
%.asm.o: %.asm
|
|
$(ASM) $(ASMFLAGS) $< -o $@
|