1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for the ARC prom monitor library routines under Linux. 4# 5 6ifdef CONFIG_ARC_CMDLINE_ONLY 7lib-y += cmdline.o 8else 9lib-y += cmdline.o env.o file.o identify.o init.o \ 10 misc.o 11endif 12 13lib-$(CONFIG_ARC_MEMORY) += memory.o 14lib-$(CONFIG_ARC_CONSOLE) += arc_con.o 15lib-$(CONFIG_ARC_PROMLIB) += promlib.o 16