You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
555 B
20 lines
555 B
# this makefile is used as the last step during an individual
|
|
# feature configuration (that is, while building the actual profile
|
|
# from subprofiles and requested features)
|
|
#
|
|
# please note, it runs *after* copying subdirectories corresponding
|
|
# to requested subprofiles and *after* running generate.sh, see also
|
|
# features.in/Makefile
|
|
#
|
|
# for a real-world example, see syslinux feature
|
|
|
|
include $(BUILDDIR)/distcfg.mk
|
|
|
|
ifndef 00EXAMPLE
|
|
$(warning this is an example, who might want to include it? :])
|
|
endif
|
|
|
|
EXAMPLE := hello, world
|
|
|
|
all:
|
|
@echo $(EXAMPLE)
|
|
|