Rob Herring | 12869ec | 2019-06-21 08:18:32 -0600 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-or-later |
David Gibson | a4da2e3 | 2007-12-18 15:06:42 +1100 | [diff] [blame] | 2 | # Makefile.dtc |
| 3 | # |
| 4 | # This is not a complete Makefile of itself. Instead, it is designed to |
| 5 | # be easily embeddable into other systems of Makefiles. |
| 6 | # |
Stephen Warren | cd29672 | 2012-09-28 21:25:59 +0000 | [diff] [blame] | 7 | DTC_SRCS = \ |
| 8 | checks.c \ |
| 9 | data.c \ |
| 10 | dtc.c \ |
| 11 | flattree.c \ |
| 12 | fstree.c \ |
| 13 | livetree.c \ |
| 14 | srcpos.c \ |
| 15 | treesource.c \ |
| 16 | util.c |
| 17 | |
Rob Herring | f858927 | 2018-09-13 08:59:25 -0500 | [diff] [blame] | 18 | ifneq ($(NO_YAML),1) |
| 19 | DTC_SRCS += yamltree.c |
| 20 | endif |
| 21 | |
David Gibson | ed95d74 | 2008-08-07 12:24:17 +1000 | [diff] [blame] | 22 | DTC_GEN_SRCS = dtc-lexer.lex.c dtc-parser.tab.c |
David Gibson | a4da2e3 | 2007-12-18 15:06:42 +1100 | [diff] [blame] | 23 | DTC_OBJS = $(DTC_SRCS:%.c=%.o) $(DTC_GEN_SRCS:%.c=%.o) |