blob: e9fd91bb40d5f8aff8e46c9ebff6c973ff81f63a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#*****************************************************************************
#
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#*****************************************************************************
HOSTCC ?= cc
amdfwtool_exe : amdfwtool.c
$(HOSTCC) amdfwtool.c -o amdfwtool
amdfwtool : amdfwtool_exe
clean:
@rm -f amdfwtool.o amdfwtool amdfwtool.exe
|