add pptp client
[openwrt-10.03/.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_PPTP) += pptp
22 package-$(BR2_PACKAGE_PPTPD) += pptpd
23 package-$(BR2_PACKAGE_IPROUTE2) += iproute2
24 package-$(BR2_PACKAGE_HASERL) += haserl
25 package-$(BR2_PACKAGE_MICROPERL) += microperl
26 package-$(BR2_PACKAGE_LIBELF) += libelf
27 package-$(BR2_PACKAGE_STRACE) += strace
28 package-$(BR2_PACKAGE_TCPDUMP) += tcpdump
29
30 all: compile install
31 clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m)) linux-clean
32 compile: $(patsubst %,%-compile,$(package-y) $(package-m))
33 install: $(patsubst %,%-install,$(package-y))
34
35 tcpdump-compile: libpcap-compile
36 dropbear-compile: zlib-compile
37 openssl-compile: zlib-compile
38 openvpn-compile: openssl-compile
39 $(patsubst %,%-prepare,$(package-y) $(package-m)): linux-install
40
41 %-prepare:
42         @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-prepare,%,$@) prepare
43         @touch $(STAMP_DIR)/.$@
44
45 %-compile: %-prepare 
46         @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-compile,%,$@) compile
47         @touch $(STAMP_DIR)/.$@
48
49 %-install: %-compile
50         @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-install,%,$@) install
51         @touch $(STAMP_DIR)/.$@
52
53 %-clean:
54         @$(MAKE) -C $(patsubst %-clean,%,$@) clean
55         @rm -f $(STAMP_DIR)/.$(patsubst %-clean,%,$@)-*
56