Makefile (02ffb580e6ab7aaa7f6703ed35f489e97439cb65) | Makefile (c79e1c1ce9e5c1ddf6fac631e4741999f8a0cc58) |
---|---|
1# 2# (C) Copyright 2001-2006 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4# 5# SPDX-License-Identifier: GPL-2.0+ 6# | 1# 2# (C) Copyright 2001-2006 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4# 5# SPDX-License-Identifier: GPL-2.0+ 6# |
7 | |
8#ccflags-y += -DDEBUG 9 10obj-$(CONFIG_DM_RTC) += rtc-uclass.o 11 12obj-$(CONFIG_RTC_AT91SAM9_RTT) += at91sam9_rtt.o 13obj-$(CONFIG_RTC_BFIN) += bfin_rtc.o 14obj-y += date.o 15obj-$(CONFIG_RTC_DAVINCI) += davinci.o --- 16 unchanged lines hidden (view full) --- 32obj-$(CONFIG_RTC_M41T11) += m41t11.o 33obj-$(CONFIG_RTC_M41T60) += m41t60.o 34obj-$(CONFIG_RTC_M41T62) += m41t62.o 35obj-$(CONFIG_RTC_M41T94) += m41t94.o 36obj-$(CONFIG_RTC_M48T35A) += m48t35ax.o 37obj-$(CONFIG_RTC_MAX6900) += max6900.o 38obj-$(CONFIG_RTC_MC13XXX) += mc13xxx-rtc.o 39obj-$(CONFIG_RTC_MC146818) += mc146818.o | 7#ccflags-y += -DDEBUG 8 9obj-$(CONFIG_DM_RTC) += rtc-uclass.o 10 11obj-$(CONFIG_RTC_AT91SAM9_RTT) += at91sam9_rtt.o 12obj-$(CONFIG_RTC_BFIN) += bfin_rtc.o 13obj-y += date.o 14obj-$(CONFIG_RTC_DAVINCI) += davinci.o --- 16 unchanged lines hidden (view full) --- 31obj-$(CONFIG_RTC_M41T11) += m41t11.o 32obj-$(CONFIG_RTC_M41T60) += m41t60.o 33obj-$(CONFIG_RTC_M41T62) += m41t62.o 34obj-$(CONFIG_RTC_M41T94) += m41t94.o 35obj-$(CONFIG_RTC_M48T35A) += m48t35ax.o 36obj-$(CONFIG_RTC_MAX6900) += max6900.o 37obj-$(CONFIG_RTC_MC13XXX) += mc13xxx-rtc.o 38obj-$(CONFIG_RTC_MC146818) += mc146818.o |
39obj-$(CONFIG_RTC_MCP79411) += ds1307.o |
|
40obj-$(CONFIG_MCFRTC) += mcfrtc.o 41obj-$(CONFIG_RTC_MK48T59) += mk48t59.o 42obj-$(CONFIG_RTC_MPC5200) += mpc5xxx.o 43obj-$(CONFIG_RTC_MPC8xx) += mpc8xx.o 44obj-$(CONFIG_RTC_MV) += mvrtc.o 45obj-$(CONFIG_RTC_MX27) += mx27rtc.o 46obj-$(CONFIG_RTC_MXS) += mxsrtc.o 47obj-$(CONFIG_RTC_PCF8563) += pcf8563.o 48obj-$(CONFIG_RTC_PL031) += pl031.o 49obj-$(CONFIG_RTC_PT7C4338) += pt7c4338.o 50obj-$(CONFIG_RTC_RS5C372A) += rs5c372.o 51obj-$(CONFIG_RTC_RTC4543) += rtc4543.o 52obj-$(CONFIG_RTC_RV3029) += rv3029.o 53obj-$(CONFIG_RTC_RX8025) += rx8025.o 54obj-$(CONFIG_RTC_S3C24X0) += s3c24x0_rtc.o 55obj-$(CONFIG_SANDBOX) += sandbox_rtc.o 56obj-$(CONFIG_RTC_X1205) += x1205.o | 40obj-$(CONFIG_MCFRTC) += mcfrtc.o 41obj-$(CONFIG_RTC_MK48T59) += mk48t59.o 42obj-$(CONFIG_RTC_MPC5200) += mpc5xxx.o 43obj-$(CONFIG_RTC_MPC8xx) += mpc8xx.o 44obj-$(CONFIG_RTC_MV) += mvrtc.o 45obj-$(CONFIG_RTC_MX27) += mx27rtc.o 46obj-$(CONFIG_RTC_MXS) += mxsrtc.o 47obj-$(CONFIG_RTC_PCF8563) += pcf8563.o 48obj-$(CONFIG_RTC_PL031) += pl031.o 49obj-$(CONFIG_RTC_PT7C4338) += pt7c4338.o 50obj-$(CONFIG_RTC_RS5C372A) += rs5c372.o 51obj-$(CONFIG_RTC_RTC4543) += rtc4543.o 52obj-$(CONFIG_RTC_RV3029) += rv3029.o 53obj-$(CONFIG_RTC_RX8025) += rx8025.o 54obj-$(CONFIG_RTC_S3C24X0) += s3c24x0_rtc.o 55obj-$(CONFIG_SANDBOX) += sandbox_rtc.o 56obj-$(CONFIG_RTC_X1205) += x1205.o |