mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
10 lines
222 B
Makefile
10 lines
222 B
Makefile
CC = gcc
|
|
CFLAGS = -I include -O2
|
|
|
|
DEPS = bootselect.o rom_fill_inbuf.o chooser.o lib/baremetal.a
|
|
|
|
bootselect.elf: $(DEPS)
|
|
ld -defsym HEAPSIZE=0 -T elfImage.lds $(DEPS) -o bootselect.elf
|
|
|
|
clean:
|
|
rm bootselect.elf *.o
|