fix image preconfiguration
[openwrt-10.03/.git] / package / Makefile
1
2 # Copyright (C) 2006-2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 curdir:=package
10
11 -include $(TMP_DIR)/.packagedeps
12 $(curdir)/builddirs:=$(sort $(package-) $(package-y) $(package-m))
13 $(curdir)/builddirs-default:=. $(sort $(package-y) $(package-m))
14 $(curdir)/builddirs-prereq:=. $(sort $(prereq-y) $(prereq-m))
15 $(curdir)/builddirs-install:=. $(sort $(package-y))
16
17 $(curdir)/install:=$(curdir)/install-cleanup
18
19 $(curdir)/cleanup: $(TMP_DIR)/.build
20         rm -rf $(TARGET_DIR)
21
22 $(curdir)/rootfs-prepare: $(TMP_DIR)/.build
23         @-$(MAKE) package/preconfig
24         @if [ -d $(TOPDIR)/files ]; then \
25                 $(CP) $(TOPDIR)/files/. $(TARGET_DIR); \
26         fi
27         @mkdir -p $(TARGET_DIR)/etc/rc.d
28         @( \
29                 cd $(TARGET_DIR); \
30                 for script in ./etc/init.d/*; do \
31                         grep '#!/bin/sh /etc/rc.common' $$script >/dev/null || continue; \
32                         IPKG_INSTROOT=$(TARGET_DIR) $(which bash) ./etc/rc.common $$script enable; \
33                 done || true \
34         )
35         @-find $(TARGET_DIR) -name CVS   | $(XARGS) rm -rf
36         @-find $(TARGET_DIR) -name .svn  | $(XARGS) rm -rf
37         @-find $(TARGET_DIR) -name '.#*' | $(XARGS) rm -f
38
39 $(curdir)/index: FORCE
40         @(cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages)
41
42 $(curdir)/flags-install:= -j1
43
44 $(eval $(call stampfile,$(curdir),package,prereq,.config))
45 $(eval $(call stampfile,$(curdir),package,cleanup,$(TMP_DIR)/.build))
46 $(eval $(call stampfile,$(curdir),package,compile,$(TMP_DIR)/.build))
47 $(eval $(call stampfile,$(curdir),package,install,$(TMP_DIR)/.build))
48 $(eval $(call stampfile,$(curdir),package,rootfs-prepare,$(TMP_DIR)/.build))
49
50 $(eval $(call subdir,$(curdir)))