blob: 4a045e3a915c4ef8c334efb192044edc240dbe64 [file] [log] [blame]
Daniel Schwierzeck1f00ad62011-03-28 18:33:58 +02001#
2# (C) Copyright 2011
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
Daniel Schwierzeck1f00ad62011-03-28 18:33:58 +02006#
7
8include $(TOPDIR)/config.mk
9
10LIB = $(obj)lib$(SOC).o
11
Pavel Herrmann3597c522012-10-09 07:10:08 +000012COBJS = au1x00_eth.o au1x00_serial.o au1x00_usb_ohci.o au1x00_ide.o
Daniel Schwierzeck1f00ad62011-03-28 18:33:58 +020013
14SRCS := $(COBJS:.o=.c)
15OBJS := $(addprefix $(obj),$(COBJS))
16
17all: $(obj).depend $(LIB)
18
19$(LIB): $(OBJS)
20 $(call cmd_link_o_target, $(OBJS))
21
22#########################################################################
23
24# defines $(obj).depend target
25include $(SRCTREE)/rules.mk
26
27sinclude $(obj).depend
28
29#########################################################################