coreboot/util/baremetal/bootselect/Makefile
2002-11-12 16:46:25 +00:00

14 lines
270 B
Makefile

ARCH = i386
CC = gcc
CFLAGS = -I ../include -I ../include/$(ARCH) -O2
DEPS = bootselect.o rom_fill_inbuf.o chooser.o ../lib/baremetal.a
bootselect.elf: $(DEPS)
ld -defsym HEAPSIZE=0x8000 -T elfImage.lds $(DEPS) -o bootselect.elf
clean:
rm bootselect.elf *.o