remove wl / nas / et .. binary only; no license given
[openwrt/svn-archive/archive.git] / openwrt / package / Makefile
1 # Main makefile for the packages
2 include $(TOPDIR)/rules.mk
3
4 package-y:=openwrt
5 package-$(BR2_PACKAGE_BRIDGE) += bridge
6 package-$(BR2_PACKAGE_BUSYBOX) += busybox
7 package-$(BR2_PACKAGE_DROPBEAR) += dropbear
8 package-$(BR2_PACKAGE_DNSMASQ) += dnsmasq
9 package-$(BR2_PACKAGE_EBTABLES) += ebtables
10 package-$(BR2_PACKAGE_ARPTABLES) += arptables
11 package-$(BR2_PACKAGE_IPTABLES) += iptables
12 package-$(BR2_PACKAGE_PPP) += ppp
13 package-$(BR2_PACKAGE_LZO) += lzo
14 package-$(BR2_PACKAGE_ZLIB) += zlib
15 package-$(BR2_PACKAGE_MATRIXSSL) += matrixssl
16 package-$(BR2_PACKAGE_OPENSSL) += openssl
17 package-$(BR2_PACKAGE_OPENVPN) += openvpn
18 package-$(BR2_PACKAGE_PPTPD) += pptpd
19 package-$(BR2_PACKAGE_IPROUTE2) += iproute2
20
21 all: compile install
22 clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m)) linux-clean
23 compile: $(patsubst %,%-compile,$(package-y) $(package-m))
24 install: $(patsubst %,%-install,$(package-y))
25
26 dropbear-compile: zlib-compile
27 openssl-compile: zlib-compile
28 $(patsubst %,%-prepare,$(package-y) $(package-m)): linux-install
29
30 %-prepare:
31 @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-prepare,%,$@) prepare
32 @touch $(STAMP_DIR)/.$@
33
34 %-compile: %-prepare
35 @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-compile,%,$@) compile
36 @touch $(STAMP_DIR)/.$@
37
38 %-install: %-compile
39 @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-install,%,$@) install
40 @touch $(STAMP_DIR)/.$@
41
42 %-clean:
43 @$(MAKE) -C $(patsubst %-clean,%,$@) clean
44 @rm -f $(STAMP_DIR)/.$(patsubst %-clean,%,$@)-*
45