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 $(TOPDIR
)/.pkgdeps
13 PREREQ_PACKAGES
:=$(patsubst %,%-prereq
,$(package-y
) $(package-m
))
14 DOWNLOAD_PACKAGES
:=$(patsubst %,%-download
,$(package-y
) $(package-m
))
15 COMPILE_PACKAGES
:=$(patsubst %,%-compile
,$(package-y
) $(package-m
))
16 INSTALL_PACKAGES
:=$(patsubst %,%-install,$(package-y
))
18 $(STAMP_DIR
) $(TARGET_DIR
):
21 %-prereq
: $(STAMP_DIR
) $(TARGET_DIR
)
22 $(MAKE
) -C
$(patsubst %-prereq
,%,$@
) prereq
24 %-download
: $(STAMP_DIR
) $(TARGET_DIR
)
25 $(MAKE
) -C
$(patsubst %-download
,%,$@
) download
27 %-prepare
: $(STAMP_DIR
) $(TARGET_DIR
)
28 $(MAKE
) -C
$(patsubst %-prepare
,%,$@
) prepare
30 %-compile
: $(STAMP_DIR
) $(TARGET_DIR
)
31 $(MAKE
) -C
$(patsubst %-compile
,%,$@
) compile
33 %-install: $(STAMP_DIR
) $(TARGET_DIR
)
34 $(MAKE
) -C
$(patsubst %-install,%,$@
) install
36 %-clean: $(STAMP_DIR
) $(TARGET_DIR
)
37 $(MAKE
) -C
$(patsubst %-clean,%,$@
) clean
43 $(TOPDIR
)/.pkgdeps
: $(TOPDIR
)/.pkginfo
44 @
$(TOPDIR
)/scripts
/gen_deps.pl
$(GENDEP_OPTS
) < $< > $@ ||
rm -f
$@
47 clean: $(patsubst %,%-clean,$(package-
) $(package-y
) $(package-m
))
48 prereq
: $(PREREQ_PACKAGES
)
49 download
: $(DOWNLOAD_PACKAGES
)
50 compile-targets
: $(COMPILE_PACKAGES
)
52 $(MAKE
) compile-targets
53 install-targets
: base-files-install
$(INSTALL_PACKAGES
)
55 rm -rf
$(BUILD_DIR
)/root
56 $(MAKE
) install-targets
58 index
: $(PACKAGE_DIR
)/Packages
60 $(PACKAGE_DIR
)/Packages
: $(PACKAGE_DIR
)/*.ipk
61 (cd
$(PACKAGE_DIR
); $(STAGING_DIR
)/usr
/bin
/ipkg-make-index .
> Packages
)
64 ifeq ($(MAKECMDGOALS
),compile-targets
)
65 MAKEFLAGS
:=$(MAKEFLAGS
) -j
$(CONFIG_JLEVEL
)
This page took 0.051852 seconds and 5 git commands to generate.