vulcanos/kernel/cpu/Makefile

10 lines
188 B
Makefile
Raw Normal View History

2021-02-03 15:59:42 +01:00
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 $@