]> Joshua Wise's Git repositories - netwatch.git/blob - grubload/Makefile
add elf loader to grub boot; doesn't do aseg opening yet (todo!)
[netwatch.git] / grubload / Makefile
1 OBJS=multiboot_c.o multiboot_asm.o console.o minilib.o loader.o
2 CC=gcc
3 CFLAGS=-nostdlib -I../include -I. -fno-builtin -nostdinc
4
5 all: multiboot
6
7 multiboot: $(OBJS)
8         ld -o multiboot $(OBJS) -Ttext=0x100000
This page took 0.023603 seconds and 4 git commands to generate.