aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/acx-mac80211
Commit message (Expand)AuthorAgeFilesLines
* source: Switch to xz for packages and tools where possibleDaniel Engberg2016-10-061-2/+1
* packages: prefer http over git for git protocolHauke Mehrtens2016-06-221-1/+1
* mac80211: update to wireless-testing 2016-05-12Felix Fietkau2016-05-151-10/+26
* acx-mac80211: update git urlHauke Mehrtens2015-08-031-1/+1
* acx-mac80211: make it compile again against new compat-wirelessJonas Gorski2015-07-125-185/+70
* acx-mac80211: fails to build on cobaltJohn Crispin2015-03-121-1/+1
* kernel/acx-mac80211: fix autoloading on bootJonas Gorski2014-12-111-1/+1
* acx-mac80211: v3.14 related compile fixesJohn Crispin2014-12-081-0/+2
* acx-mac80211: really fix the buildHauke Mehrtens2014-02-081-1/+1
* acx-mac80211: fix build after recent mac80211 update and refresh patchesHauke Mehrtens2014-02-055-25/+35
* acx-mac80211: update to latest versionJonas Gorski2013-10-128-192/+178
* packages: clean up the package folderJohn Crispin2013-06-216-0/+473
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# 
# Copyright (C) 2007-2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

ifeq ($(DUMP),)
  define BuildTarget/bin
    ifeq ($(if $(VARIANT),$(BUILD_VARIANT)),$(VARIANT))
    ifdef Package/$(1)/install
      ifneq ($(CONFIG_PACKAGE_$(1))$(DEVELOPER),)
        compile: install-bin-$(1)
      else
        compile: $(1)-disabled
        $(1)-disabled:
		@echo "WARNING: skipping $(1) -- package not selected" >&2
      endif
    endif
    endif

    install-bin-$(1): $(STAMP_BUILT)
	  rm -rf $(BIN_DIR)/$(1)
	  $(INSTALL_DIR) $(BIN_DIR)/$(1)
	  $(call Package/$(1)/install,$(BIN_DIR)/$(1))

    clean-$(1):
	  rm -rf $(BIN_DIR)/$(1)

    clean: clean-$(1)
    .PHONY: install-bin-$(1)
  endef
endif