OBJ=kernel CC=gcc -w all: $(OBJ) kernel: kernel.o aff.o util.o gdt.o pic.o interrupt.o int.o idt.o ld --oformat binary -Ttext 1000 $^ -o $@ int.o: int.asm nasm -f elf $^ -o $@ .o: .c $(CC) -c $^ clean: rm -f $(OBJ) *.o