OMAP4: first cut at support for OMAP4 and Panda
[pandora-x-loader.git] / Makefile
1 #
2 # (C) Copyright 2004-2006, Texas Instruments, <www.ti.com>
3 # Jian Zhang <jzhang@ti.com>
4 #
5 # (C) Copyright 2000-2004
6 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 #
8 # See file CREDITS for list of people who contributed to this
9 # project.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation; either version 2 of
14 # the License, or (at your option) any later version.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 # MA 02111-1307 USA
25 #
26
27 HOSTARCH := $(shell uname -m | \
28         sed -e s/i.86/i386/ \
29             -e s/sun4u/sparc64/ \
30             -e s/arm.*/arm/ \
31             -e s/sa110/arm/ \
32             -e s/powerpc/ppc/ \
33             -e s/macppc/ppc/)
34
35 HOSTOS := $(shell uname -s | tr A-Z a-z | \
36             sed -e 's/\(cygwin\).*/cygwin/')
37
38 export  HOSTARCH
39
40 # Deal with colliding definitions from tcsh etc.
41 VENDOR=
42
43 #########################################################################
44
45 TOPDIR  := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
46 export  TOPDIR
47
48 ifeq (include/config.mk,$(wildcard include/config.mk))
49 # load ARCH, BOARD, and CPU configuration
50 include include/config.mk
51 export  ARCH CPU BOARD VENDOR
52 # load other configuration
53 include $(TOPDIR)/config.mk
54
55 ifndef CROSS_COMPILE
56 CROSS_COMPILE = arm-none-linux-gnueabi-
57 #CROSS_COMPILE = arm-linux-
58 export  CROSS_COMPILE
59 endif
60
61 #########################################################################
62 # X-LOAD objects....order is important (i.e. start must be first)
63
64 OBJS  = cpu/$(CPU)/start.o
65  
66
67 LIBS += board/$(BOARDDIR)/lib$(BOARD).a
68 LIBS += cpu/$(CPU)/lib$(CPU).a
69 LIBS += lib/lib$(ARCH).a
70 LIBS += fs/fat/libfat.a
71 LIBS += disk/libdisk.a
72 LIBS += drivers/libdrivers.a
73 LIBS += common/libcommon.a
74 .PHONY : $(LIBS)
75
76 # Add GCC lib
77 PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
78
79 SUBDIRS =  
80 #########################################################################
81 #########################################################################
82
83 ALL = x-load.bin System.map
84
85 all:            $(ALL)
86
87  
88 x-load.bin:     x-load
89                 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
90  
91 x-load: $(OBJS) $(LIBS) $(LDSCRIPT)
92                 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed  -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
93                 $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
94                         --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \
95                         -Map x-load.map -o x-load
96  
97 $(LIBS):
98                 $(MAKE) -C `dirname $@`
99
100   
101 System.map:     x-load
102                 @$(NM) $< | \
103                 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
104                 sort > System.map
105
106 oneboot:        x-load.bin
107                 scripts/mkoneboot.sh
108
109 #########################################################################
110 else
111 all install x-load x-load.srec oneboot depend dep:
112         @echo "System not configured - see README" >&2
113         @ exit 1
114 endif
115
116 #########################################################################
117
118 unconfig:
119         rm -f include/config.h include/config.mk
120
121 #========================================================================
122 # ARM
123 #========================================================================
124 #########################################################################
125 ## OMAP1 (ARM92xT) Systems
126 #########################################################################
127
128 omap1710h3_config :    unconfig
129         @./mkconfig $(@:_config=) arm arm926ejs omap1710h3
130
131 #########################################################################
132 ## OMAP2 (ARM1136) Systems
133 #########################################################################
134
135 omap2420h4_config :    unconfig
136         @./mkconfig $(@:_config=) arm arm1136 omap2420h4
137
138 omap2430sdp_config :    unconfig
139         @./mkconfig $(@:_config=) arm arm1136 omap2430sdp
140
141 #########################################################################
142 ## OMAP3 (ARM-CortexA8) Systems
143 #########################################################################
144 omap3430sdp_config :    unconfig
145         @./mkconfig $(@:_config=) arm omap3 omap3430sdp
146
147 omap3430labrador_config :    unconfig
148         @./mkconfig $(@:_config=) arm omap3 omap3430labrador
149
150 omap3evm_config :       unconfig
151         @./mkconfig $(@:_config=) arm omap3 omap3evm
152
153 overo_config :  unconfig
154         @./mkconfig $(@:_config=) arm omap3 overo
155
156 omap3530beagle_config :    unconfig
157         @./mkconfig $(@:_config=) arm omap3 omap3530beagle
158
159 #########################################################################
160 ## OMAP4 (ARM-CortexA9) Systems
161 #########################################################################
162 omap4430panda_config :    unconfig
163         @./mkconfig $(@:_config=) arm omap4 omap4430panda
164
165 #########################################################################
166
167 clean:
168         find . -type f \
169                 \( -name 'core' -o -name '*.bak' -o -name '*~' \
170                 -o -name '*.o'  -o -name '*.a'  \) -print \
171                 | xargs rm -f
172  
173 clobber:        clean
174         find . -type f \
175                 \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \
176                 -print \
177                 | xargs rm -f
178         rm -f $(OBJS) *.bak tags TAGS
179         rm -fr *.*~
180         rm -f x-load x-load.map $(ALL) 
181         rm -f include/asm/proc include/asm/arch
182
183 mrproper \
184 distclean:      clobber unconfig
185
186 backup:
187         F=`basename $(TOPDIR)` ; cd .. ; \
188         gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
189
190 #########################################################################