switch-coreboot/util/baremetal/hello/Makefile
2003-05-17 13:22:12 +00:00

10 lines
198 B
Makefile

CC = gcc
CFLAGS = -I ../include -O2
DEPS = ../lib/_main.o hello.o ../lib/baremetal.a
hello.elf: $(DEPS)
ld -defsym HEAPSIZE=0x100 -T elfImage.lds $(DEPS) -o hello.elf
clean:
rm hello.elf *.o