diff --git a/RELEASES.md b/RELEASES.md index 75b44657..ac4cff92 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -31,6 +31,8 @@ Linker Miscellaneous ------------- - Dependency on `petgraph-graphml` added to facilitate the creation of GraphML. +- Added `make` target to build linked GraphML files. +- Updated `make *.xmle` target to explicitly state it is emitting `xmle`. Miscellaneous ------------- diff --git a/build-aux/Makefile.am b/build-aux/Makefile.am index aee4fa28..757f03f7 100644 --- a/build-aux/Makefile.am +++ b/build-aux/Makefile.am @@ -117,6 +117,10 @@ program-ui: ui/package.strip.js ui/Program.js ui/html/index.phtml %.xmli: %.xml $(path_tame)/tamer/target/release/tamec --emit xmlo -o $@ $< +%.graphml: %.xmlo + $(TAME_TS) + $(path_tame)/tamer/target/release/tameld --emit graphml -o $@ $< + # Individual dependencies appear in suppliers.mk (see below) %.xmlo: %.xmli $(path_tame)/.rev-xmlo $(TAME_TS) @@ -136,7 +140,7 @@ standalones: $(dest_standalone) strip: $(dest_standalone_strip) ui/package.strip.js %.xmle: %.xmlo $(path_tame)/.rev-xmle $(TAME_TS) - $(path_tame)/tamer/target/release/tameld -o $@ $< + $(path_tame)/tamer/target/release/tameld --emit xmle -o $@ $< %.js: %.xmle $(TAME_TS) $(TAME) standalone $< $@