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.
9 include $(TOPDIR
)/rules.mk
10 include $(TOPDIR
)/.config
11 include $(INCLUDE_DIR
)/host.mk
15 include $(TMP_DIR
)/.packagedeps
17 PREREQ_PACKAGES
:=$(patsubst %,%-prereq
,$(prereq-y
) $(prereq-m
))
18 DOWNLOAD_PACKAGES
:=$(patsubst %,%-download
,$(package-y
) $(package-m
))
19 COMPILE_PACKAGES
:=$(patsubst %,%-compile
,$(package-y
) $(package-m
))
20 INSTALL_PACKAGES
:=$(patsubst %,%-install,$(package-y
))
22 $(STAMP_DIR
) $(TARGET_DIR
):
25 %-prereq
%-download
%-clean %-compile
%-install: FORCE
26 $(MAKE
) -C
$* $(patsubst $*-%,%,$@
)
28 %-prereq
: $(STAMP_DIR
) $(TARGET_DIR
)
29 %-prepare
: $(TARGET_DIR
)
32 $(TMP_DIR
)/.packagedeps
: $(TMP_DIR
)/.packageinfo
33 @
$(TOPDIR
)/scripts
/metadata.pl package_mk
< $< > $@ ||
rm -f
$@
36 clean: $(patsubst %,%-clean,$(package-
) $(package-y
) $(package-m
))
37 prereq
: $(PREREQ_PACKAGES
)
38 download
: $(DOWNLOAD_PACKAGES
)
39 compile
: $(COMPILE_PACKAGES
)
41 install-targets
: $(INSTALL_PACKAGES
)
43 rm -rf
$(BUILD_DIR
)/root
44 $(MAKE
) install-targets
46 @if
[ -d
$(TOPDIR
)/files
]; then \
47 $(CP
) $(TOPDIR
)/files
/.
$(BUILD_DIR
)/root
; \
50 cd
$(BUILD_DIR
)/root
; \
51 for script in .
/etc
/init.d
/*; do \
52 grep
'#!/bin/sh /etc/rc.common' $$script >/dev
/null || continue
; \
53 IPKG_INSTROOT
=$(BUILD_DIR
)/root
$(which bash
) .
/etc
/rc.common
$$script enable
; \
57 index
: $(PACKAGE_DIR
)/Packages
59 $(PACKAGE_DIR
)/Packages
: $(PACKAGE_DIR
)/*.ipk
60 (cd
$(PACKAGE_DIR
); $(SCRIPT_DIR
)/ipkg-make-index.sh .
> Packages
)
63 ..
/scripts
/feeds.sh
$(CONFIG_SOURCE_FEEDS
)
65 ifeq ($(MAKECMDGOALS
),compile
)
66 MAKEFLAGS
:=$(MAKEFLAGS
) -j
$(CONFIG_JLEVEL
)
This page took 0.053811 seconds and 5 git commands to generate.