vulcanos/kernel/cpu/Makefile

12 lines
240 B
Makefile
Raw Normal View History

SOURCES = main.asm ports.asm \
gdt.asm idt.asm \
interrupts.asm header.asm
OBJS = $(SOURCES:.asm=.o_asm)
2021-02-03 15:59:42 +01:00
ASM = nasm
ASMFLAGS = -f elf32
2021-02-03 15:59:42 +01:00
all: $(OBJS)
%.o_asm: %.asm
@$(ASM) $(ASMFLAGS) $< -o $@
@echo [ASM] compiling $<...