| OLD | NEW |
| 1 # | 1 # |
| 2 # (C) Copyright 2000-2006 | 2 # (C) Copyright 2000-2006 |
| 3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. | 3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 # | 4 # |
| 5 # See file CREDITS for list of people who contributed to this | 5 # See file CREDITS for list of people who contributed to this |
| 6 # project. | 6 # project. |
| 7 # | 7 # |
| 8 # This program is free software; you can redistribute it and/or | 8 # This program is free software; you can redistribute it and/or |
| 9 # modify it under the terms of the GNU General Public License as | 9 # modify it under the terms of the GNU General Public License as |
| 10 # published by the Free Software Foundation; either version 2 of | 10 # published by the Free Software Foundation; either version 2 of |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 # Define __KERNEL_STRICT_NAMES to prevent typedef overlaps | 137 # Define __KERNEL_STRICT_NAMES to prevent typedef overlaps |
| 138 # | 138 # |
| 139 HOSTCPPFLAGS = -idirafter $(SRCTREE)/include \ | 139 HOSTCPPFLAGS = -idirafter $(SRCTREE)/include \ |
| 140 -idirafter $(OBJTREE)/include2 \ | 140 -idirafter $(OBJTREE)/include2 \ |
| 141 -idirafter $(OBJTREE)/include \ | 141 -idirafter $(OBJTREE)/include \ |
| 142 -I $(SRCTREE)/lib/libfdt \ | 142 -I $(SRCTREE)/lib/libfdt \ |
| 143 -I $(SRCTREE)/tools \ | 143 -I $(SRCTREE)/tools \ |
| 144 -DTEXT_BASE=$(TEXT_BASE) -DUSE_HOSTCC \ | 144 -DTEXT_BASE=$(TEXT_BASE) -DUSE_HOSTCC \ |
| 145 -D__KERNEL_STRICT_NAMES | 145 -D__KERNEL_STRICT_NAMES |
| 146 | 146 |
| 147 ifdef CROS_CONFIG_PATH |
| 148 HOSTCPPFLAGS += -I$(CROS_CONFIG_PATH) |
| 149 endif |
| 147 | 150 |
| 148 all: $(obj).depend $(BINS) $(LOGO-y) subdirs | 151 all: $(obj).depend $(BINS) $(LOGO-y) subdirs |
| 149 | 152 |
| 150 $(obj)bin2header$(SFX): $(obj)bin2header.o | 153 $(obj)bin2header$(SFX): $(obj)bin2header.o |
| 151 $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $^ | 154 $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $^ |
| 152 $(HOSTSTRIP) $@ | 155 $(HOSTSTRIP) $@ |
| 153 | 156 |
| 154 $(obj)bmp_logo$(SFX): $(obj)bmp_logo.o | 157 $(obj)bmp_logo$(SFX): $(obj)bmp_logo.o |
| 155 $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $^ | 158 $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $^ |
| 156 $(HOSTSTRIP) $@ | 159 $(HOSTSTRIP) $@ |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 $(obj)./bmp_logo $(LOGO_BMP) >$@ | 224 $(obj)./bmp_logo $(LOGO_BMP) >$@ |
| 222 | 225 |
| 223 ######################################################################### | 226 ######################################################################### |
| 224 | 227 |
| 225 # defines $(obj).depend target | 228 # defines $(obj).depend target |
| 226 include $(SRCTREE)/rules.mk | 229 include $(SRCTREE)/rules.mk |
| 227 | 230 |
| 228 sinclude $(obj).depend | 231 sinclude $(obj).depend |
| 229 | 232 |
| 230 ######################################################################### | 233 ######################################################################### |
| OLD | NEW |