1#	$NetBSD: Makefile,v 1.3.2.3 2004/09/21 13:14:53 skrll Exp $
2
3S=	${.CURDIR}/../../../../..
4
5PLATFORM= SMDK2410
6RELOC= 0x00000000
7MAXIMAGESIZE= 0		# concatenate
8LOADADDR= 0x30200000
9
10CPPFLAGS+= -DCPU_S3C2410
11CPPFLAGS+= -DCONSPEED=115200
12CPPFLAGS+= -DCONADDR=0x50000000UL
13# CPPFLAGS+= -DCONADDR=0x50004000UL
14# CPPFLAGS+= -DCONADDR=0x50008000UL
15CPPFLAGS+= -DIO_INIT_HOOK=smdk2410_io_init -DRAM_INIT_HOOK=smdk2410_ram_init
16CPPFLAGS+= -DXTAL_CLK=12000000 -DFCLK=180000000 -DSDRAM_SIZE=32*1024*1024
17CPUFLAGS= -march=armv4
18
19LDSCRIPT= ${.CURDIR}/ldscript
20
21SRCS+=	smdk2410.c sscom.c
22SRCS+=	smdk2410_io_init.c s3c2410_vector.S  smdk2410_ram_init.S
23
24.include "${S}/arch/evbarm/stand/gzboot/Makefile.gzboot"
25