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