mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-24 11:32:10 +00:00
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
|