install externally compiled kernel-specific packages into the kernel-specific root
[oweals/openwrt.git] / openwrt / target / linux / package / Makefile
1 # Main makefile for the packages
2 include $(TOPDIR)/rules.mk
3
4 package-$(BR2_PACKAGE_KMOD_FUSE) += fuse
5 package-$(BR2_PACKAGE_KMOD_SHFS) += shfs
6 package-$(BR2_PACKAGE_KMOD_OPENSWAN) += openswan
7 ifeq ($(LINUX_VERSION),2.4.30)
8 package-$(BR2_PACKAGE_KMOD_WLCOMPAT) += wlcompat
9 endif
10
11 all: compile install
12 clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m))
13 compile: $(patsubst %,%-compile,$(package-y) $(package-m))
14 install: $(patsubst %,%-install,$(package-y))
15
16 MAKEOPTS:=      BOARD="$(BOARD)" \
17                 IPKG="$(IPKG)" \
18                 TARGET_DIR="$(TARGET_DIR)" \
19                 BUILD_DIR="$(BUILD_DIR)" \
20                 KERNEL_DIR="$(KERNEL_DIR)" \
21                 LINUX_VERSION="$(LINUX_VERSION)" \
22                 KERNEL_RELEASE="$(KERNEL_RELEASE)"
23
24
25 %-prepare:
26         $(MAKE) -C $(patsubst %-prepare,%,$@) \
27                 $(MAKEOPTS) \
28                 prepare
29
30 %-compile: %-prepare 
31         $(MAKE) -C $(patsubst %-compile,%,$@) \
32                 $(MAKEOPTS) \
33                 compile
34
35 %-install: %-compile
36         $(MAKE) -C $(patsubst %-install,%,$@) \
37                 $(MAKEOPTS) \
38                 install
39
40 %-clean:
41         @$(MAKE) -C $(patsubst %-clean,%,$@) clean
42