Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 2 | # |
| 3 | # Makefile for the linux kernel. |
| 4 | # |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 5 | |
Andrew Victor | 8fc5ffa | 2006-06-29 16:06:33 +0100 | [diff] [blame] | 6 | # CPU-specific support |
Alexandre Belloni | b53cdd0 | 2015-03-12 13:07:31 +0100 | [diff] [blame] | 7 | obj-$(CONFIG_SOC_AT91RM9200) += at91rm9200.o |
Nicolas Ferre | cac0172 | 2015-01-27 16:41:55 +0100 | [diff] [blame] | 8 | obj-$(CONFIG_SOC_AT91SAM9) += at91sam9.o |
| 9 | obj-$(CONFIG_SOC_SAMA5) += sama5.o |
Szemző András | 2d4c44e | 2017-05-31 03:06:21 +0200 | [diff] [blame] | 10 | obj-$(CONFIG_SOC_SAMV7) += samv7.o |
Ludovic Desroches | 8f4b479 | 2013-03-22 13:24:12 +0000 | [diff] [blame] | 11 | |
Andrew Victor | b7b272a | 2008-01-23 09:23:09 +0100 | [diff] [blame] | 12 | # Power Management |
Alexandre Belloni | b2f0627 | 2017-05-31 03:06:22 +0200 | [diff] [blame] | 13 | obj-$(CONFIG_ATMEL_PM) += pm.o pm_suspend.o |
Andrew Victor | 5c3fddc | 2006-06-20 19:30:20 +0100 | [diff] [blame] | 14 | |
Alexandre Belloni | 176a1b3 | 2015-03-19 21:14:40 +0100 | [diff] [blame] | 15 | ifeq ($(CONFIG_CPU_V7),y) |
| 16 | AFLAGS_pm_suspend.o := -march=armv7-a |
| 17 | endif |
Andrew Victor | 5c3fddc | 2006-06-20 19:30:20 +0100 | [diff] [blame] | 18 | ifeq ($(CONFIG_PM_DEBUG),y) |
| 19 | CFLAGS_pm.o += -DDEBUG |
| 20 | endif |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame] | 21 | |
| 22 | # Default sed regexp - multiline due to syntax constraints |
| 23 | define sed-y |
| 24 | "/^->/{s:->#\(.*\):/* \1 */:; \ |
| 25 | s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \ |
| 26 | s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \ |
| 27 | s:->::; p;}" |
| 28 | endef |
| 29 | |
| 30 | # Use filechk to avoid rebuilds when a header changes, but the resulting file |
| 31 | # does not |
| 32 | define filechk_offsets |
| 33 | (set -e; \ |
| 34 | echo "#ifndef $2"; \ |
| 35 | echo "#define $2"; \ |
| 36 | echo "/*"; \ |
| 37 | echo " * DO NOT MODIFY."; \ |
| 38 | echo " *"; \ |
| 39 | echo " * This file was generated by Kbuild"; \ |
| 40 | echo " */"; \ |
| 41 | echo ""; \ |
| 42 | sed -ne $(sed-y); \ |
| 43 | echo ""; \ |
| 44 | echo "#endif" ) |
| 45 | endef |
| 46 | |
| 47 | arch/arm/mach-at91/pm_data-offsets.s: arch/arm/mach-at91/pm_data-offsets.c |
| 48 | $(call if_changed_dep,cc_s_c) |
| 49 | |
| 50 | include/generated/at91_pm_data-offsets.h: arch/arm/mach-at91/pm_data-offsets.s FORCE |
| 51 | $(call filechk,offsets,__PM_DATA_OFFSETS_H__) |
| 52 | |
| 53 | arch/arm/mach-at91/pm_suspend.o: include/generated/at91_pm_data-offsets.h |