diff options
author | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2020-01-13 16:41:06 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2020-02-26 10:49:00 -0500 |
commit | 6939753ca04416082720a0e773a3491686f25a4d (patch) | |
tree | fc60e5152b74274b814b57156417b8b7a2cda338 /build-aux | |
parent | 85a4934db55b8f3f4b8f0f82a75d31c967963a96 (diff) | |
download | tame-6939753ca04416082720a0e773a3491686f25a4d.tar.gz tame-6939753ca04416082720a0e773a3491686f25a4d.tar.bz2 tame-6939753ca04416082720a0e773a3491686f25a4d.zip |
TAMER: POC: Output xmle
This is a working proof-of-concept that will be finalized in future commits.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/Makefile.am b/build-aux/Makefile.am index 9c95571..e8ab266 100644 --- a/build-aux/Makefile.am +++ b/build-aux/Makefile.am @@ -132,7 +132,8 @@ standalones: $(dest_standalone) strip: $(dest_standalone_strip) ui/package.strip.js %.xmle: %.xmlo $(path_tame)/.rev-xmle $(TAME_TS) - $(TAME) link $< $@ + @echo "WARNING: using WIP proof-of-concept linker!" + set -o pipefail; $(path_tame)/tamer/target/release/tameld $< | awk '/^<package/{p=1};p' > $@ %.js: %.xmle $(TAME_TS) $(TAME) standalone $< $@ |