-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexternal.mk
31 lines (28 loc) · 1007 Bytes
/
external.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Include custom packages
include $(sort $(wildcard $(BR2_EXTERNAL_CUSTOM_PATH)/package/*/*.mk))
# Custom make targets
#
help: more-help
more-help:
@echo "Buildroot Extension Help"
@echo "------------------------------------------"
@echo
@echo "This build directory is configured to create the system described in:"
@echo
@echo "$(BR2_DEFCONFIG)"
@echo
@echo "Building:"
@echo " all - Build the current configuration"
@echo " clean - Clean everything"
@echo
@echo "Configuration:"
@echo " menuconfig - Run Buildroot's menuconfig"
@echo " linux-menuconfig - Run menuconfig on the Linux kernel"
@echo " busybox-menuconfig - Run menuconfig on Busybox to enable shell"
@echo " commands and more"
@echo
@echo "---------------------------------------------------------------------------"
@echo
@echo "Buildroot Help"
@echo "--------------"
.PHONY: more-help