adaab4a97e
Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: I7cf35132df0bc23f7b6f78014ddd72d58ea2ab8a Reviewed-on: https://review.coreboot.org/c/coreboot/+/68983 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
7 lines
105 B
Makefile
7 lines
105 B
Makefile
## SPDX-License-Identifier: GPL-2.0-only
|
|
all:
|
|
$(CC) post.c -o post
|
|
clean:
|
|
rm -f post
|
|
|
|
distclean: clean
|