Simon Glass | 9ebd9b4 | 2011-09-21 13:32:44 -0700 | [diff] [blame] | 1 | # |
| 2 | # This is not a complete Makefile of itself. Instead, it is designed to |
| 3 | # be easily embeddable into other systems of Makefiles. |
| 4 | # |
| 5 | |
Mike Frysinger | 8f459c5 | 2011-10-25 17:29:24 -0400 | [diff] [blame] | 6 | FDTDUMP_SRCS = \ |
| 7 | fdtdump.c \ |
Simon Glass | 9ebd9b4 | 2011-09-21 13:32:44 -0700 | [diff] [blame] | 8 | util.c |
| 9 | |
Mike Frysinger | 8f459c5 | 2011-10-25 17:29:24 -0400 | [diff] [blame] | 10 | FDTDUMP_OBJS = $(FDTDUMP_SRCS:%.c=%.o) |
Simon Glass | 68d057f | 2012-01-21 10:14:47 -0800 | [diff] [blame] | 11 | |
| 12 | |
| 13 | FDTGET_SRCS = \ |
| 14 | fdtget.c \ |
| 15 | util.c |
| 16 | |
| 17 | FDTGET_OBJS = $(FDTGET_SRCS:%.c=%.o) |
Simon Glass | 1ede50c | 2012-01-21 10:14:48 -0800 | [diff] [blame] | 18 | |
| 19 | |
| 20 | FDTPUT_SRCS = \ |
| 21 | fdtput.c \ |
| 22 | util.c |
| 23 | |
| 24 | FDTPUT_OBJS = $(FDTPUT_SRCS:%.c=%.o) |
Pantelis Antoniou | 4240914 | 2017-06-14 17:51:11 +0300 | [diff] [blame] | 25 | |
| 26 | FDTOVERLAY_SRCS = \ |
| 27 | fdtoverlay.c \ |
| 28 | util.c |
| 29 | |
| 30 | FDTOVERLAY_OBJS = $(FDTOVERLAY_SRCS:%.c=%.o) |