]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/avr32/cpu/at32ap700x/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / arch / avr32 / cpu / at32ap700x / Makefile
1 #
2 # Copyright (C) 2005-2006 Atmel Corporation
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5 #
6
7 include $(TOPDIR)/config.mk
8
9 LIB     := $(obj)lib$(SOC).o
10
11 COBJS   := portmux.o clk.o mmu.o
12 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
13 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
14
15 all: $(obj).depend $(LIB)
16
17 $(LIB): $(OBJS)
18         $(call cmd_link_o_target, $^)
19
20 #########################################################################
21
22 # defines $(obj).depend target
23 include $(SRCTREE)/rules.mk
24
25 sinclude $(obj).depend
26
27 #########################################################################