2008-07-29 03:36:11 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
2006-07-21 09:15:06 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-07-30 18:22:01 +00:00
|
|
|
curdir:=package
|
|
|
|
|
|
|
|
-include $(TMP_DIR)/.packagedeps
|
|
|
|
$(curdir)/builddirs:=$(sort $(package-) $(package-y) $(package-m))
|
2007-12-14 00:33:25 +00:00
|
|
|
ifeq ($(SDK),1)
|
|
|
|
$(curdir)/builddirs-install:=.
|
|
|
|
else
|
|
|
|
$(curdir)/builddirs-default:=. $(sort $(package-y) $(package-m))
|
|
|
|
$(curdir)/builddirs-prereq:=. $(sort $(prereq-y) $(prereq-m))
|
|
|
|
$(curdir)/builddirs-install:=. $(sort $(package-y))
|
|
|
|
endif
|
2008-05-07 16:45:00 +00:00
|
|
|
ifneq ($(IGNORE_ERRORS),)
|
|
|
|
$(curdir)/builddirs-ignore-compile:= $(if $(filter m y, $(IGNORE_ERRORS)),$(foreach m,$(IGNORE_ERRORS),$(package-$(m))),$(package-m))
|
|
|
|
endif
|
2007-07-30 18:22:01 +00:00
|
|
|
|
|
|
|
$(curdir)/install:=$(curdir)/install-cleanup
|
2007-07-31 22:54:21 +00:00
|
|
|
|
2007-08-01 08:21:15 +00:00
|
|
|
$(curdir)/cleanup: $(TMP_DIR)/.build
|
2007-08-07 00:04:25 +00:00
|
|
|
rm -rf $(TARGET_DIR)
|
2007-07-31 22:54:21 +00:00
|
|
|
|
2007-08-01 08:21:15 +00:00
|
|
|
$(curdir)/rootfs-prepare: $(TMP_DIR)/.build
|
2007-09-21 17:01:46 +00:00
|
|
|
@-$(MAKE) package/preconfig
|
2006-12-01 14:01:31 +00:00
|
|
|
@if [ -d $(TOPDIR)/files ]; then \
|
2007-08-07 00:04:25 +00:00
|
|
|
$(CP) $(TOPDIR)/files/. $(TARGET_DIR); \
|
2006-12-01 14:01:31 +00:00
|
|
|
fi
|
2007-08-07 00:04:25 +00:00
|
|
|
@mkdir -p $(TARGET_DIR)/etc/rc.d
|
2006-10-15 21:03:30 +00:00
|
|
|
@( \
|
2007-08-07 00:04:25 +00:00
|
|
|
cd $(TARGET_DIR); \
|
2006-10-15 21:03:30 +00:00
|
|
|
for script in ./etc/init.d/*; do \
|
|
|
|
grep '#!/bin/sh /etc/rc.common' $$script >/dev/null || continue; \
|
2008-09-02 00:23:59 +00:00
|
|
|
IPKG_INSTROOT=$(TARGET_DIR) $$(which bash) ./etc/rc.common $$script enable; \
|
2007-03-16 03:02:31 +00:00
|
|
|
done || true \
|
2006-10-15 21:03:30 +00:00
|
|
|
)
|
2007-08-07 00:04:25 +00:00
|
|
|
@-find $(TARGET_DIR) -name CVS | $(XARGS) rm -rf
|
|
|
|
@-find $(TARGET_DIR) -name .svn | $(XARGS) rm -rf
|
|
|
|
@-find $(TARGET_DIR) -name '.#*' | $(XARGS) rm -f
|
2007-10-05 21:52:05 +00:00
|
|
|
$(if $(CONFIG_CLEAN_IPKG),rm -rf $(TARGET_DIR)/usr/lib/ipkg)
|
2007-08-01 08:21:15 +00:00
|
|
|
|
|
|
|
$(curdir)/index: FORCE
|
2008-07-29 03:36:11 +00:00
|
|
|
@(cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages && \
|
|
|
|
gzip -9c Packages > Packages.gz \
|
|
|
|
)
|
2006-07-30 17:09:22 +00:00
|
|
|
|
2007-07-30 21:14:08 +00:00
|
|
|
$(curdir)/flags-install:= -j1
|
|
|
|
|
2007-08-30 22:43:25 +00:00
|
|
|
$(eval $(call stampfile,$(curdir),package,prereq,.config))
|
|
|
|
$(eval $(call stampfile,$(curdir),package,cleanup,$(TMP_DIR)/.build))
|
|
|
|
$(eval $(call stampfile,$(curdir),package,compile,$(TMP_DIR)/.build))
|
|
|
|
$(eval $(call stampfile,$(curdir),package,install,$(TMP_DIR)/.build))
|
|
|
|
$(eval $(call stampfile,$(curdir),package,rootfs-prepare,$(TMP_DIR)/.build))
|
2007-07-30 21:14:08 +00:00
|
|
|
|
2007-07-30 18:22:01 +00:00
|
|
|
$(eval $(call subdir,$(curdir)))
|