2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
12 -include $(TMP_DIR
)/.packagedeps
13 $(curdir
)/builddirs
:=$(sort $(package-
) $(package-y
) $(package-m
))
14 $(curdir
)/builddirs-default
:=.
$(sort $(package-y
) $(package-m
))
15 $(curdir
)/builddirs-prereq
:=.
$(sort $(prereq-y
) $(prereq-m
))
16 $(curdir
)/builddirs-install
:=.
$(sort $(package-y
))
18 $(curdir
)//compile
:=.config prereq
19 $(curdir
)/install:=$(curdir
)/install-cleanup
20 $(curdir
)/install-cleanup
:
21 rm -rf
$(BUILD_DIR
)/root
22 $(MAKE
) install-targets
24 @if
[ -d
$(TOPDIR
)/files
]; then \
25 $(CP
) $(TOPDIR
)/files
/.
$(BUILD_DIR
)/root
; \
27 @mkdir
-p
$(BUILD_DIR
)/root
/etc
/rc.d
29 cd
$(BUILD_DIR
)/root
; \
30 for script in .
/etc
/init.d
/*; do \
31 grep
'#!/bin/sh /etc/rc.common' $$script >/dev
/null || continue
; \
32 IPKG_INSTROOT
=$(BUILD_DIR
)/root
$(which bash
) .
/etc
/rc.common
$$script enable
; \
35 @
-find
$(BUILD_DIR
)/root
-name CVS |
$(XARGS
) rm -rf
36 @
-find
$(BUILD_DIR
)/root
-name .svn |
$(XARGS
) rm -rf
37 @
-find
$(BUILD_DIR
)/root
-name
'.#*' |
$(XARGS
) rm -f
39 $(curdir
)/index
: FORCE
40 (cd
$(PACKAGE_DIR
); $(SCRIPT_DIR
)/ipkg-make-index.sh .
> Packages
)
42 $(eval
$(call stampfile
,$(curdir
),package
,prereq
))
43 $(eval
$(call subdir
,$(curdir
)))
This page took 0.043362 seconds and 5 git commands to generate.