blob: 9b526a3d687e0a4ca2dcb6f3bc416447ba00b949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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~
|