X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/e937d4917751eee51eed5e4145fe145f41b7c0da..88faff760afc7fa43365f9732ca6eb001991d725:/openwrt/package/Makefile diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 8a5cd0619..8d7dd7579 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -47,6 +47,7 @@ package-$(BR2_PACKAGE_LIBPTHREAD) += libpthread package-$(BR2_PACKAGE_LIBTOOL) += libtool package-$(BR2_PACKAGE_LIBUSB) += libusb package-$(BR2_PACKAGE_LIGHTTPD) += lighttpd +package-$(BR2_PACKAGE_LUA) += lua package-$(BR2_PACKAGE_LZO) += lzo package-$(BR2_PACKAGE_MARADNS) += maradns package-$(BR2_PACKAGE_MATRIXSSL) += matrixssl @@ -99,6 +100,7 @@ package-$(BR2_PACKAGE_TTCP) += ttcp package-$(BR2_PACKAGE_UCLIBCXX) += uclibc++ package-$(BR2_PACKAGE_ULOGD) += ulogd package-$(BR2_PACKAGE_USBUTILS) += usbutils +package-$(BR2_PACKAGE_VTUN) += vtun package-$(BR2_PACKAGE_VSFTPD) += vsftpd package-$(BR2_PACKAGE_WIRELESS_TOOLS) += wireless-tools package-$(BR2_PACKAGE_WOL) += wol @@ -107,13 +109,13 @@ package-$(BR2_PACKAGE_WPUT) += wput package-$(BR2_PACKAGE_XINETD) += xinetd package-$(BR2_PACKAGE_ZLIB) += zlib -DEV_LIBS:=tcp_wrappers glib ncurses openssl pcre popt zlib libnet libpcap mysql postgresql iptables matrixssl lzo gmp fuse portmap libelf uclibc++ speex libpng libgd +DEV_LIBS:=tcp_wrappers glib ncurses openssl pcre popt zlib libnet libpcap mysql postgresql iptables matrixssl lzo gmp fuse portmap libelf uclibc++ speex libpng libgd wireless-tools DEV_LIBS_COMPILE:=$(patsubst %,%-compile,$(DEV_LIBS)) SDK_DEFAULT_PACKAGES:=busybox dnsmasq iptables wireless-tools dropbear bridge ipkg ppp SDK_DEFAULT_COMPILE:=$(patsubst %,%-compile,$(SDK_DEFAULT_PACKAGES)) all: compile install -clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m)) linux-clean +clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m)) compile: $(patsubst %,%-compile,$(package-y) $(package-m)) install: $(patsubst %,%-install,$(package-y)) @@ -121,13 +123,13 @@ arpwatch-compile: libpcap-compile cyrus-sasl-compile: openssl-compile dropbear-compile: zlib-compile fprobe-compile: libpcap-compile -freeradius-compile: libtool-compile mysql-compile openldap-compile openssl-compile postgresql-compile kismet-compile: uclibc++-compile libpcap-compile ncurses-compile lcd4linux-compile: ncurses-compile libgd-compile: libpng-compile libnet-compile: libpcap-compile lighttpd-compile: openssl-compile pcre-compile mysql-compile: ncurses-compile zlib-compile +net-snmp-compile: libelf-compile nfs-server-compile: portmap-compile nmap-compile: uclibc++-compile pcre-compile libpcap-compile nocatsplash-compile: glib-compile @@ -142,11 +144,12 @@ siproxd-compile: libosip2-compile sipsak-compile: openssl-compile tcpdump-compile: libpcap-compile tinc-compile: zlib-compile openssl-compile lzo-compile +vtun-compile: zlib-compile openssl-compile lzo-compile tor-compile: libevent-compile openssl-compile zlib-compile wpa_supplicant-compile: openssl-compile asterisk-compile: openssl-compile -ifneq ($(BR2_PACKAGE_ASTERISK_SPEEX),) +ifneq ($(BR2_PACKAGE_ASTERISK_CODEC_SPEEX),) asterisk-compile: speex-compile endif ifneq ($(BR2_PACKAGE_ASTERISK_PGSQL),) @@ -156,6 +159,17 @@ ifneq ($(BR2_PACKAGE_ASTERISK_MYSQL),) asterisk-compile: mysql-compile endif +freeradius-compile: libtool-compile openssl-compile +ifneq ($(BR2_PACKAGE_FREERADIUS_MOD_LDAP),) +freeradius-compile: openldap-compile +endif +ifneq ($(BR2_PACKAGE_FREERADIUS_MOD_SQL_MYSQL),) +freeradius-compile: mysql-compile +endif +ifneq ($(BR2_PACKAGE_FREERADIUS_MOD_SQL_PGSQL),) +freeradius-compile: postgresql-compile +endif + openvpn-compile: openssl-compile ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y) openvpn-compile: lzo-compile @@ -189,7 +203,6 @@ ulogd-compile: postgresql-compile endif sdk-compile: $(DEV_LIBS_COMPILE) $(SDK_DEFAULT_COMPILE) openwrt-install -$(patsubst %,%-prepare,$(package-y) $(package-m) $(package-)): linux-install %-prepare: @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-prepare,%,$@) prepare @@ -203,6 +216,10 @@ $(patsubst %,%-prepare,$(package-y) $(package-m) $(package-)): linux-install @[ -f $(STAMP_DIR)/.$@ ] || $(MAKE) -C $(patsubst %-install,%,$@) install @touch $(STAMP_DIR)/.$@ +%-rebuild: + @rm -f $(STAMP_DIR)/.$(patsubst %-rebuild,%,$@)-* + $(MAKE) -C $(patsubst %-rebuild,%,$@) rebuild + %-clean: @$(MAKE) -C $(patsubst %-clean,%,$@) clean @rm -f $(STAMP_DIR)/.$(patsubst %-clean,%,$@)-*