move cflags default setting to target makefiles
[openwrt.git] / include / target.mk
1 #
2 # Copyright (C) 2007-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 ifneq ($(__target_inc),1)
9 __target_inc=1
10
11 # default device type
12 DEVICE_TYPE?=router
13
14 # Default packages - the really basic set
15 DEFAULT_PACKAGES:=base-files libc libgcc busybox dropbear mtd uci opkg
16 # For router targets
17 DEFAULT_PACKAGES.router:=dnsmasq iptables ppp ppp-mod-pppoe kmod-ipt-nathelper firewall
18
19 # Additional packages for Linux 2.6
20 ifneq ($(KERNEL),2.4)
21   DEFAULT_PACKAGES += udevtrigger hotplug2
22 endif
23
24 # Add device specific packages
25 DEFAULT_PACKAGES += $(DEFAULT_PACKAGES.$(DEVICE_TYPE))
26
27 ifneq ($(DUMP),)
28   all: dumpinfo
29 endif
30
31 target_conf=$(subst .,_,$(subst -,_,$(subst /,_,$(1))))
32 ifeq ($(DUMP),)
33   PLATFORM_DIR:=$(TOPDIR)/target/linux/$(BOARD)
34   SUBTARGET:=$(strip $(foreach subdir,$(patsubst $(PLATFORM_DIR)/%/target.mk,%,$(wildcard $(PLATFORM_DIR)/*/target.mk)),$(if $(CONFIG_TARGET_$(call target_conf,$(BOARD)_$(subdir))),$(subdir))))
35 else
36   PLATFORM_DIR:=${CURDIR}
37 endif
38
39 TARGETID:=$(BOARD)$(if $(SUBTARGET),/$(SUBTARGET))
40 PLATFORM_SUBDIR:=$(PLATFORM_DIR)$(if $(SUBTARGET),/$(SUBTARGET))
41
42 ifneq ($(TARGET_BUILD),1)
43   ifndef DUMP
44     include $(PLATFORM_DIR)/Makefile
45     ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR))
46       include $(PLATFORM_SUBDIR)/target.mk
47     endif
48   endif
49 else
50   ifneq ($(SUBTARGET),)
51     -include ./$(SUBTARGET)/target.mk
52   endif
53 endif
54
55 define Profile/Default
56   NAME:=
57   PACKAGES:=
58 endef
59
60 ifndef Profile
61 define Profile
62   $(eval $(call Profile/Default))
63   $(eval $(call Profile/$(1)))
64   $(eval $(call shexport,Profile/$(1)/Config))
65   $(eval $(call shexport,Profile/$(1)/Description))
66   DUMPINFO += \
67         echo "Target-Profile: $(1)"; \
68         echo "Target-Profile-Name: $(NAME)"; \
69         echo "Target-Profile-Packages: $(PACKAGES)"; \
70         if [ -f ./config/profile-$(1) ]; then \
71                 echo "Target-Profile-Kconfig: yes"; \
72         fi; \
73         echo "Target-Profile-Config: "; \
74         getvar "$(call shvar,Profile/$(1)/Config)"; \
75         echo "@@"; \
76         echo "Target-Profile-Description:"; \
77         getvar "$(call shvar,Profile/$(1)/Description)"; \
78         echo "@@"; \
79         echo;
80   ifeq ($(CONFIG_TARGET_$(call target_conf,$(BOARD)_$(if $(SUBTARGET),$(SUBTARGET)_)$(1))),y)
81     PROFILE=$(1)
82   endif
83 endef
84 endif
85
86 ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR))
87   define IncludeProfiles
88     -include $(PLATFORM_DIR)/profiles/*.mk
89     -include $(PLATFORM_SUBDIR)/profiles/*.mk
90   endef
91 else
92   define IncludeProfiles
93     -include $(PLATFORM_DIR)/profiles/*.mk
94   endef
95 endif
96
97 ifeq ($(TARGET_BUILD),1)
98   $(eval $(call IncludeProfiles))
99 else
100   ifeq ($(DUMP),)
101     $(eval $(call IncludeProfiles))
102   endif
103 endif
104
105 $(eval $(call shexport,Target/Description))
106
107 ifneq ($(TARGET_BUILD)$(if $(DUMP),,1),)
108   include $(INCLUDE_DIR)/kernel-version.mk
109 endif
110
111 GENERIC_PLATFORM_DIR := $(TOPDIR)/target/linux/generic-$(KERNEL)
112 GENERIC_PATCH_DIR := $(GENERIC_PLATFORM_DIR)/patches$(if $(wildcard $(GENERIC_PLATFORM_DIR)/patches-$(KERNEL_PATCHVER)),-$(KERNEL_PATCHVER))
113 GENERIC_FILES_DIR := $(foreach dir,$(wildcard $(GENERIC_PLATFORM_DIR)/files $(GENERIC_PLATFORM_DIR)/files-$(KERNEL_PATCHVER)),"$(dir)")
114
115 GENERIC_LINUX_CONFIG?=$(firstword $(wildcard $(GENERIC_PLATFORM_DIR)/config-$(KERNEL_PATCHVER) $(GENERIC_PLATFORM_DIR)/config-default))
116 LINUX_CONFIG?=$(firstword $(wildcard $(foreach subdir,$(PLATFORM_DIR) $(PLATFORM_SUBDIR),$(subdir)/config-$(KERNEL_PATCHVER) $(subdir)/config-default)) $(PLATFORM_DIR)/config-$(KERNEL_PATCHVER))
117 LINUX_SUBCONFIG?=$(firstword $(wildcard $(PLATFORM_SUBDIR)/config-$(KERNEL_PATCHVER) $(PLATFORM_SUBDIR)/config-default))
118 ifeq ($(LINUX_CONFIG),$(LINUX_SUBCONFIG))
119   LINUX_SUBCONFIG:=
120 endif
121 LINUX_CONFCMD=$(if $(LINUX_CONFIG),$(SCRIPT_DIR)/kconfig.pl + $(GENERIC_LINUX_CONFIG) $(if $(LINUX_SUBCONFIG),+ $(LINUX_CONFIG) $(LINUX_SUBCONFIG),$(LINUX_CONFIG)),true)
122
123 ifeq ($(DUMP),1)
124   BuildTarget=$(BuildTargets/DumpCurrent)
125
126   ifneq ($(BOARD),)
127     TMP_CONFIG:=$(TMP_DIR)/.kconfig-$(call target_conf,$(TARGETID))
128     $(TMP_CONFIG): $(GENERIC_LINUX_CONFIG) $(LINUX_CONFIG) $(LINUX_SUBCONFIG)
129                 $(LINUX_CONFCMD) > $@ || rm -f $@
130     -include $(TMP_CONFIG)
131     .SILENT: $(TMP_CONFIG)
132     .PRECIOUS: $(TMP_CONFIG)
133
134     ifneq ($(CONFIG_GENERIC_GPIO),)
135       FEATURES += gpio
136     endif
137     ifneq ($(CONFIG_PCI),)
138       FEATURES += pci
139     endif
140     ifneq ($(CONFIG_USB)$(CONFIG_USB_SUPPORT),)
141       FEATURES += usb
142     endif
143     ifneq ($(CONFIG_PCMCIA)$(CONFIG_PCCARD),)
144       FEATURES += pcmcia
145     endif
146     ifneq ($(CONFIG_VGA_CONSOLE)$(CONFIG_FB),)
147       FEATURES += display
148     endif
149
150     # remove duplicates
151     FEATURES:=$(sort $(FEATURES))
152   endif
153   DEFAULT_CFLAGS_i386=-O2 -pipe -march=i486 -funit-at-a-time
154   DEFAULT_CFLAGS_x86_64=-O2 -pipe -march=athlon64 -funit-at-a-time
155   DEFAULT_CFLAGS_mips=-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time
156   DEFAULT_CFLAGS_mipsel=$(DEFAULT_CFLAGS_mips)
157   DEFAULT_CFLAGS_arm=-Os -pipe -march=armv5te -mtune=xscale -funit-at-a-time
158   DEFAULT_CFLAGS_armeb=$(DEFAULT_CFLAGS_arm)
159   DEFAULT_CFLAGS=$(if $(DEFAULT_CFLAGS_$(ARCH)),$(DEFAULT_CFLAGS_$(ARCH)),-Os -pipe -funit-at-a-time)
160 endif
161
162 define BuildTargets/DumpCurrent
163   .PHONY: dumpinfo
164   dumpinfo:
165         @echo 'Target: $(TARGETID)'; \
166          echo 'Target-Board: $(BOARD)'; \
167          echo 'Target-Kernel: $(KERNEL)'; \
168          echo 'Target-Name: $(BOARDNAME)$(if $(SUBTARGETS),, [$(KERNEL)])$(if $(SUBTARGETS),$(if $(SUBTARGET), [$(KERNEL)]))'; \
169          echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \
170          echo 'Target-Arch: $(ARCH)'; \
171          echo 'Target-Features: $(FEATURES)'; \
172          echo 'Target-Depends: $(DEPENDS)'; \
173          echo 'Target-Optimization: $(if $(CFLAGS),$(CFLAGS),$(DEFAULT_CFLAGS))'; \
174          echo 'Linux-Version: $(LINUX_VERSION)'; \
175          echo 'Linux-Release: $(LINUX_RELEASE)'; \
176          echo 'Linux-Kernel-Arch: $(LINUX_KARCH)'; \
177          echo 'Target-Description:'; \
178          getvar $(call shvar,Target/Description); \
179          echo '@@'; \
180          echo 'Default-Packages: $(DEFAULT_PACKAGES)'; \
181          $(DUMPINFO)
182         $(if $(SUBTARGET),,@$(foreach SUBTARGET,$(SUBTARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); ))
183 endef
184
185 include $(INCLUDE_DIR)/kernel.mk
186 ifeq ($(TARGET_BUILD),1)
187   include $(INCLUDE_DIR)/kernel-build.mk
188   BuildTarget?=$(BuildKernel)
189 endif
190
191 endif #__target_inc