2005-05-28 12:17:29 +03:00
|
|
|
# Main makefile for the packages
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
package-$(BR2_PACKAGE_KMOD_FUSE) += fuse
|
|
|
|
package-$(BR2_PACKAGE_KMOD_SHFS) += shfs
|
|
|
|
package-$(BR2_PACKAGE_KMOD_OPENSWAN) += openswan
|
2005-05-28 13:54:32 +03:00
|
|
|
ifeq ($(LINUX_VERSION),2.4.30)
|
|
|
|
package-$(BR2_PACKAGE_KMOD_WLCOMPAT) += wlcompat
|
|
|
|
endif
|
2005-05-28 12:17:29 +03:00
|
|
|
|
|
|
|
all: compile install
|
|
|
|
clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m))
|
|
|
|
compile: $(patsubst %,%-compile,$(package-y) $(package-m))
|
|
|
|
install: $(patsubst %,%-install,$(package-y))
|
|
|
|
|
|
|
|
%-prepare:
|
|
|
|
$(MAKE) -C $(patsubst %-prepare,%,$@) \
|
2005-05-28 13:54:32 +03:00
|
|
|
TARGET_DIR="$(TARGET_DIR)" \
|
2005-05-28 12:17:29 +03:00
|
|
|
BUILD_DIR="$(BUILD_DIR)" \
|
|
|
|
KERNEL_DIR="$(KERNEL_DIR)" \
|
|
|
|
LINUX_VERSION="$(LINUX_VERSION)" \
|
|
|
|
prepare
|
|
|
|
|
|
|
|
%-compile: %-prepare
|
|
|
|
$(MAKE) -C $(patsubst %-compile,%,$@) \
|
2005-05-28 13:54:32 +03:00
|
|
|
TARGET_DIR="$(TARGET_DIR)" \
|
2005-05-28 12:17:29 +03:00
|
|
|
BUILD_DIR="$(BUILD_DIR)" \
|
|
|
|
KERNEL_DIR="$(KERNEL_DIR)" \
|
|
|
|
LINUX_VERSION="$(LINUX_VERSION)" \
|
|
|
|
compile
|
|
|
|
|
|
|
|
%-install: %-compile
|
|
|
|
$(MAKE) -C $(patsubst %-install,%,$@) \
|
2005-05-28 13:54:32 +03:00
|
|
|
TARGET_DIR="$(TARGET_DIR)" \
|
2005-05-28 12:17:29 +03:00
|
|
|
BUILD_DIR="$(BUILD_DIR)" \
|
|
|
|
KERNEL_DIR="$(KERNEL_DIR)" \
|
|
|
|
LINUX_VERSION="$(LINUX_VERSION)" \
|
|
|
|
install
|
|
|
|
|
|
|
|
%-clean:
|
|
|
|
@$(MAKE) -C $(patsubst %-clean,%,$@) clean
|
|
|
|
|