Guest User

Untitled

a guest
Sep 15th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.37 KB | None | 0 0
  1. SOURCES=boot.o main.o monitor.o common.o descriptor_tables.o isr.o interrupt.o gdt.o timer.o \
  2.         kheap.o paging.o ordered_array.o fs.o initrd.o task.o process.o syscall.o
  3.  
  4. CFLAGS=-nostdlib -nostdinc -fno-builtin
  5. LDFLAGS=-T link.ld
  6. ASFLAGS=-f elf
  7.  
  8. all: $(SOURCES) build
  9.  
  10. clean:
  11.     -rm *.o
  12.  
  13. link:
  14.     ld $(LDFLAGS) -o kernel $(SOURCES)
  15.  
  16. .s.o:
  17.     nasm $(ASFLAGS) $<
Add Comment
Please, Sign In to add comment