summaryrefslogtreecommitdiffstats
path: root/target/linux/Makefile
blob: d1b4d545a8348e78fe7d6b9abd137d9bbfbb524b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
include $(TOPDIR)/rules.mk

define kernel_template

$(1)/$(2)-clean:
	$(MAKE) -C $(1) BOARD="$(2)" clean

$(1)/$(2)-prepare:
	$(MAKE) -C $(1) BOARD="$(2)" prepare

$(1)/$(2)-compile:
	$(MAKE) -C $(1) BOARD="$(2)" compile

$(1)/$(2)-rebuild:
	$(MAKE) -C $(1) BOARD="$(2)" rebuild

$(1)/$(2)-install:
	$(MAKE) -C $(1) BOARD="$(2)" install

ifeq ($(BR2_LINUX_$(3)),y)
clean: $(1)/$(2)-clean
prepare: $(1)/$(2)-prepare
compile: $(1)/$(2)-compile
rebuild: $(1)/$(2)-rebuild
install: $(1)/$(2)-install
endif

.PHONY: $(1)/$(2)-clean $(1)/$(2)-prepare $(1)/$(2)-compile $(1)/$(2)-rebuild $(1)/$(2)-install
endef

prepare:
compile:
install:
rebuild:
clean:
	rm -rf $(BUILD_DIR)/kernel

$(eval $(call kernel_template,linux-2.4,brcm,2_4_BRCM))