historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/skiboot/external/memboot/Makefile

15 lines
187 B
Makefile
Raw Normal View History

2024-01-16 11:20:27 -06:00
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~