historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/skiboot/external/memboot/Makefile
2024-01-16 11:20:27 -06:00

14 lines
187 B
Makefile

all: memboot
CFLAGS=-O2 -Wall
memboot: memboot.c
$(CC) $(CFLAGS) -o $@ $^
.PHONY: clean
clean:
rm -rf memboot
.PHONY: distclean
distclean: clean
rm -rf *.c~ *.h~ *.i *.s Makefile~