mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-13 16:27:39 -04:00
Follows the model of the existing sub-Makefiles for dtc. Adjust $(BIN) definition to represent installable bin programs and use it as the list of installed programs rather than using an enumerated list in the install target. Adjust the tests/Makefile to clean up properly still. Signed-off-by: Jon Loeliger <jdl@freescale.com>
12 lines
276 B
Text
12 lines
276 B
Text
#
|
|
# This is not a complete Makefile of itself.
|
|
# Instead, it is designed to be easily embeddable
|
|
# into other systems of Makefiles.
|
|
#
|
|
|
|
CONVERT_SRCS = \
|
|
srcpos.c
|
|
|
|
CONVERT_GEN_SRCS = convert-dtsv0-lexer.lex.c
|
|
|
|
CONVERT_OBJS = $(CONVERT_SRCS:%.c=%.o) $(CONVERT_GEN_SRCS:%.c=%.o)
|