-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 81107 b: refs/heads/master c: a4da2e3 h: refs/heads/master i: 81105: 0880e95 81103: 4cd37c6 v: v3
- Loading branch information
David Gibson
authored and
Paul Mackerras
committed
Dec 20, 2007
1 parent
018fe4d
commit d090dc4
Showing
18 changed files
with
8,352 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 70e47528aa0eb5ef63fef6ee0d30065d9e09f3e5 | ||
refs/heads/master: a4da2e3ec84cda635ac441efbe781a38d2ee41ee |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Makefile.dtc | ||
# | ||
# This is not a complete Makefile of itself. Instead, it is designed to | ||
# be easily embeddable into other systems of Makefiles. | ||
# | ||
DTC_SRCS = dtc.c flattree.c fstree.c data.c livetree.c treesource.c srcpos.c \ | ||
checks.c | ||
DTC_EXTRA = dtc.h srcpos.h | ||
DTC_LEXFILES = dtc-lexer.l | ||
DTC_BISONFILES = dtc-parser.y | ||
|
||
DTC_LEX_SRCS = $(DTC_LEXFILES:%.l=%.lex.c) | ||
DTC_BISON_SRCS = $(DTC_BISONFILES:%.y=%.tab.c) | ||
DTC_BISON_INCLUDES = $(DTC_BISONFILES:%.y=%.tab.h) | ||
|
||
DTC_GEN_SRCS = $(DTC_LEX_SRCS) $(DTC_BISON_SRCS) | ||
DTC_GEN_ALL = $(DTC_GEN_SRCS) $(DTC_BISON_INCLUDES) | ||
DTC_OBJS = $(DTC_SRCS:%.c=%.o) $(DTC_GEN_SRCS:%.c=%.o) | ||
|
||
DTC_CLEANFILES = $(DTC_GEN_ALL) | ||
|
||
# We assume the containing Makefile system can do auto-dependencies for most | ||
# things, but we supply the dependencies on generated header files explicitly | ||
|
||
$(addprefix $(DTC_objdir)/,$(DTC_GEN_SRCS:%.c=%.o)): $(addprefix $(DTC_objdir)/,$(DTC_BISON_INCLUDES)) |
Oops, something went wrong.