1 # Main makefile for the packages
2 include $(TOPDIR
)/rules.mk
3 COMPILE_PACKAGES
:=$(patsubst %,%-compile
,$(package-y
) $(package-m
))
4 INSTALL_PACKAGES
:=$(patsubst %,%-install,$(package-y
))
7 clean: $(patsubst %,%-clean,$(package-
) $(package-y
) $(package-m
))
8 compile
: $(COMPILE_PACKAGES
)
9 install: base-files-install
$(INSTALL_PACKAGES
)
11 $(STAMP_DIR
) $(TARGET_DIR
):
14 %-prepare
: $(STAMP_DIR
) $(TARGET_DIR
)
15 $(MAKE
) -C
$(patsubst %-prepare
,%,$@
) prepare
17 %-compile
: $(STAMP_DIR
) $(TARGET_DIR
)
18 $(MAKE
) -C
$(patsubst %-compile
,%,$@
) compile
20 %-clean: $(STAMP_DIR
) $(TARGET_DIR
)
21 $(MAKE
) -C
$(patsubst %-clean,%,$@
) clean
This page took 0.043292 seconds and 5 git commands to generate.