1 # Main makefile for the packages
2 include $(TOPDIR
)/rules.mk
3 include $(TOPDIR
)/.config
6 COMPILE_PACKAGES
:=$(patsubst %,%-compile
,$(package-y
) $(package-m
))
7 INSTALL_PACKAGES
:=$(patsubst %,%-install,$(package-y
))
9 $(STAMP_DIR
) $(TARGET_DIR
):
12 %-prepare
: $(STAMP_DIR
) $(TARGET_DIR
)
13 $(MAKE
) -C
$(patsubst %-prepare
,%,$@
) prepare
15 %-compile
: $(STAMP_DIR
) $(TARGET_DIR
)
17 $(MAKE
) -C
$(patsubst %-compile
,%,$@
) compile
19 %-clean: $(STAMP_DIR
) $(TARGET_DIR
)
20 $(MAKE
) -C
$(patsubst %-clean,%,$@
) clean
23 .pkgdeps
: $(TOPDIR
)/.pkginfo FORCE
24 @
$(TOPDIR
)/scripts
/gen_deps.pl
< $< > $@ ||
rm -f
$@
27 clean: $(patsubst %,%-clean,$(package-
) $(package-y
) $(package-m
))
28 compile
: $(COMPILE_PACKAGES
)
29 install: base-files-install
$(INSTALL_PACKAGES
)
This page took 0.03771 seconds and 5 git commands to generate.