Revision e5b3a24181ea0cebf1c5b20f44d016311b7048f0 authored by Peter Maydell on 24 April 2015, 14:05:06 UTC, committed by Peter Maydell on 24 April 2015, 14:05:06 UTC
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
1 parent f2a5810
Raw File
Makefile
#
# NOTE: only compilable with x86 cross compile tools
#
include ../config-host.mak

DEFINES=

TARGETS=

all: $(TARGETS)

%.o: %.S
	$(CC) $(DEFINES) -c -o $@ $<

%.dtb: %.dts
	dtc -I dts -O dtb -o $@ $<

clean:
	rm -f $(TARGETS) *.o *~
back to top