d06645d8ed
general case, therefore, combine the toplevel Makefile options such as setting TARGETS into the per-package *.mk file
18 lines
480 B
Makefile
18 lines
480 B
Makefile
#############################################################
|
|
#
|
|
# Any custom stuff you feel like doing....
|
|
#
|
|
#############################################################
|
|
CUST_DIR:=package/customize/source
|
|
|
|
customize:
|
|
-cp -af $(CUST_DIR)/* $(TARGET_DIR)/
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
ifeq ($(strip $(BR2_PACKAGE_CUSTOMIZE)),y)
|
|
TARGETS+=customize
|
|
endif
|