Sign in
qemu
/
skiboot
/
33233bcb7054595098dc6171ab9c4e5e2e661857
/
.
/
external
/
memboot
/
Makefile
blob: da17b32d918160a8721ee45cb6e3a087bd45c5df [
file
] [
log
] [
blame
]
# 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
~