vulcanos/kernel/cpu/Makefile

9 lines
169 B
Makefile
Raw Normal View History

2020-08-17 17:57:06 +02:00
OBJS = kernel_loader.asm.o ports.asm.o \
2019-09-26 17:45:46 +02:00
gdt.asm.o idt.asm.o interrupts.asm.o
ASM = nasm
ASMFLAGS = -f elf
all: $(OBJS)
%.asm.o: %.asm
2020-08-17 17:57:06 +02:00
$(ASM) $(ASMFLAGS) $< -o $@