generate.mk 555 Bytes
Newer Older
Michael Shigorin's avatar
Michael Shigorin committed
1 2 3 4 5 6 7 8 9 10
# 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

11
include $(BUILDDIR)/distcfg.mk
Michael Shigorin's avatar
Michael Shigorin committed
12 13 14 15 16 17 18 19 20

ifndef 00EXAMPLE
$(warning this is an example, who might want to include it? :])
endif

EXAMPLE := hello, world

all:
	@echo $(EXAMPLE)