From b173210012e9792d8a334f8f48d587d69e4c6503 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Mon, 1 Apr 2013 16:25:51 +0100 Subject: [PATCH] Makefile: Apparently Algol 68 Genie now has a compiler. Let's use it. I don't know how to get it to write its output to a particular place so let it do its thing and then move it where we want it. --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 226c975..79af754 100644 --- a/Makefile +++ b/Makefile @@ -201,17 +201,14 @@ erlang-fringe: ###-------------------------------------------------------------------------- ### Algol 68. -ALGOL68 = /usr/local/bin/a68g +A68G = /usr/local/bin/a68g LANGS += algol68 TARGETS += algol68-fringe SOURCES += algol68-fringe.a68 algol68-fringe: algol68-fringe.a68 - $(call v_echo,GENSH){ echo '#! $(ALGOL68) --script'; \ - cat $<; \ - } >$@.new - $(V_HIDE)chmod +x $@.new && mv $@.new $@ + $(call v_echo,A68)$(A68G) --compile -O2 $< && mv $@.sh $@ ###-------------------------------------------------------------------------- ### Dylan. -- 2.11.0