5bf8c67f185d895b03d091499f1f728b94170b5f
[openwrt.git] / 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_NCURSES) += ncurses
17 package-$(BR2_PACKAGE_OPENSSL) += openssl
18 package-$(BR2_PACKAGE_OPENVPN) += openvpn
19 package-$(BR2_PACKAGE_PCRE) += pcre
20 package-$(BR2_PACKAGE_POPT) += popt
21 package-$(BR2_PACKAGE_PPTPD) += pptpd
22 package-$(BR2_PACKAGE_IPROUTE2) += iproute2
23 package-$(BR2_PACKAGE_HASERL) += haserl
24 package-$(BR2_PACKAGE_MICROPERL) += microperl
25 package-$(BR2_PACKAGE_LIBELF) += libelf
26 package-$(BR2_PACKAGE_STRACE) += strace
27 package-$(BR2_PACKAGE_TCPDUMP) += tcpdump
28
29 all: compile install
30 clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m)) linux-clean
31 compile: $(patsubst %,%-compile,$(package-y) $(package-m))
32 install: $(patsubst %,%-install,$(package-y))
33
34 tcpdump-compile: libpcap-compile
35 dropbear-compile: zlib-compile
36 openssl-compile: zlib-compile
37 openvpn-compile: openssl-compile
38 $(patsubst %,%-prepare,$(package-y) $(package-m)): linux-install
39
40 %-prepare:
41 @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-prepare,%,$@) prepare
42 @touch $(STAMP_DIR)/.$@
43
44 %-compile: %-prepare
45 @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-compile,%,$@) compile
46 @touch $(STAMP_DIR)/.$@
47
48 %-install: %-compile
49 @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-install,%,$@) install
50 @touch $(STAMP_DIR)/.$@
51
52 %-clean:
53 @$(MAKE) -C $(patsubst %-clean,%,$@) clean
54 @rm -f $(STAMP_DIR)/.$(patsubst %-clean,%,$@)-*
55
This page took 0.041384 seconds and 3 git commands to generate.