more V= fixes
[openwrt.git] / openwrt / target / linux / package / Makefile
index d1cf0f7..dc031fc 100644 (file)
@@ -1,6 +1,9 @@
 # Main makefile for the packages
 include $(TOPDIR)/rules.mk
 
+ifneq ($(BOARD),ar7)
+package-$(BR2_PACKAGE_KMOD_ALSA) += alsa
+endif
 package-$(BR2_PACKAGE_KMOD_FUSE) += fuse
 package-$(BR2_PACKAGE_KMOD_MINI_FO) += mini_fo
 package-$(BR2_PACKAGE_KMOD_SHFS) += shfs
@@ -16,6 +19,7 @@ endif
 
 all: compile install
 clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m))
+prepare: $(patsubst %,%-prepare,$(package-y) $(package-m))
 compile: $(patsubst %,%-compile,$(package-y) $(package-m))
 install: $(patsubst %,%-install,$(package-y))
 
@@ -30,20 +34,24 @@ MAKEOPTS:=  BOARD="$(BOARD)" \
 
 
 %-prepare:
+       @$(TRACE) target/linux/package/$(patsubst %-prepare,%,$@)-prepare
        $(MAKE) -C $(patsubst %-prepare,%,$@) \
                $(MAKEOPTS) \
                prepare
 
-%-compile: %-prepare 
+%-compile:
+       @$(TRACE) target/linux/package/$(patsubst %-compile,%,$@)-compile
        $(MAKE) -C $(patsubst %-compile,%,$@) \
                $(MAKEOPTS) \
                compile
 
 %-install: %-compile
+       @$(TRACE) target/linux/package/$(patsubst %-install,%,$@)-install
        $(MAKE) -C $(patsubst %-install,%,$@) \
                $(MAKEOPTS) \
                install
 
 %-clean:
+       @$(TRACE) target/linux/package/$(patsubst %-clean,%,$@)-clean
        @$(MAKE) -C $(patsubst %-clean,%,$@) clean
 
This page took 0.034384 seconds and 4 git commands to generate.