aboutsummaryrefslogtreecommitdiff
path: root/external/memboot/Makefile
blob: da17b32d918160a8721ee45cb6e3a087bd45c5df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
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~