Makefile 203 B

1234567891011
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Copyright (C) 2020 SiFive, Inc
  4. # Pragnesh Patel <pragnesh.patel@sifive.com>
  5. ifeq ($(CONFIG_SPL_BUILD),y)
  6. obj-y += spl.o
  7. else
  8. obj-y += dram.o
  9. obj-y += cpu.o
  10. endif