diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-12-04 07:37:05 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-12-04 07:37:05 -0800 |
commit | f328b8112d08d6882b300440d591cde9d40383a6 (patch) | |
tree | c061d68f03e96382727b2c5a4d35b7713886ff07 | |
parent | fe7359a6d119b08b4f26bba7734654b623db4be1 (diff) | |
download | txr-f328b8112d08d6882b300440d591cde9d40383a6.tar.gz txr-f328b8112d08d6882b300440d591cde9d40383a6.tar.bz2 txr-f328b8112d08d6882b300440d591cde9d40383a6.zip |
* Makefile (tests/009/json.out): Use eager assignment
intead of lazy assignment to set TXR_ARGS.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2014-12-04 Kaz Kylheku <kaz@kylheku.com> + * Makefile (tests/009/json.out): Use eager assignment + intead of lazy assignment to set TXR_ARGS. + +2014-12-04 Kaz Kylheku <kaz@kylheku.com> + * Makefile (TXR): New variable. We use this to run txr rather than ./$(PROG). This way we can override the variable from the command line if necessary. @@ -141,7 +141,7 @@ tests/008/configfile.out: TXR_ARGS := $(top_srcdir)/tests/008/configfile tests/008/students.out: TXR_ARGS := $(top_srcdir)/tests/008/students.xml tests/008/soundex.out: TXR_ARGS := soundex sowndex lloyd lee jackson robert tests/008/filtenv.out: TXR_OPTS := -B -tests/009/json.out: TXR_ARGS = $(addprefix $(top_srcdir)/tests/009/,webapp.json pass1.json) +tests/009/json.out: TXR_ARGS := $(addprefix $(top_srcdir)/tests/009/,webapp.json pass1.json) tests/010/align-columns.out: TXR_ARGS := $(top_srcdir)/tests/010/align-columns.dat tests/010/block.out: TXR_OPTS := -B tests/010/reghash.out: TXR_OPTS := -B |