aboutsummaryrefslogtreecommitdiffstats
path: root/roms/skiboot/external/devicetree/Makefile
blob: 690f633b924cb57935e640393782d9ca853c6fbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
#
# Copyright 2019 IBM Corp.

DTC=dtc
OUT=p9-simics.dtb

all: $(OUT)

%.dtb: %.dts
	$(DTC) -I dts -O dtb $< -o $@

clean:
	$(RM) $(OUT)