blob: 9b526a3d687e0a4ca2dcb6f3bc416447ba00b949 [file] [log] [blame]
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~