switch-coreboot/util/baremetal/hello/Makefile
2002-11-12 17:20:38 +00:00

10 lines
183 B
Makefile

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