]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/mips/cpu/mips32/au1x00/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / mips / cpu / mips32 / au1x00 / Makefile
1 #
2 # (C) Copyright 2011
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier: GPL-2.0+
6 #
7
8 include $(TOPDIR)/config.mk
9
10 LIB = $(obj)lib$(SOC).o
11
12 COBJS = au1x00_eth.o au1x00_serial.o au1x00_usb_ohci.o au1x00_ide.o
13
14 SRCS := $(COBJS:.o=.c)
15 OBJS := $(addprefix $(obj),$(COBJS))
16
17 all: $(obj).depend $(LIB)
18
19 $(LIB): $(OBJS)
20 $(call cmd_link_o_target, $(OBJS))
21
22 #########################################################################
23
24 # defines $(obj).depend target
25 include $(SRCTREE)/rules.mk
26
27 sinclude $(obj).depend
28
29 #########################################################################