u6a/src/Makefile.am

21 lines
875 B
Makefile
Raw Normal View History

2020-10-10 19:50:45 +00:00
#
# Copyright (C) 2020 CismonX <admin@cismon.net>
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty, provided the copyright notice and
# this notice are preserved. This file is offered as-is, without any warranty.
#
2020-03-14 20:31:20 +00:00
AUTOMAKE_OPTIONS = dejagnu
2020-01-30 10:11:10 +00:00
bin_PROGRAMS = u6ac u6a
2020-05-03 12:54:34 +00:00
u6ac_SOURCES = logging.c lexer.c parser.c codegen.c u6ac.c mnemonic.c dump.c
2020-02-02 17:09:21 +00:00
u6a_SOURCES = logging.c vm_stack.c vm_pool.c runtime.c u6a.c
2020-03-14 20:31:20 +00:00
2020-06-10 15:50:05 +00:00
TEST_DIR = ${srcdir}/../tests
DEJAGNU_GLOBALS_BIN = U6A_BIN=${srcdir}/u6a U6AC_BIN=${srcdir}/u6ac U6A_RUN=${TEST_DIR}/u6a_run
DEJAGNU_GLOBALS_BASE64 = B64_ENCODE=${BASE64_ENCODE} B64_DECODE=${BASE64_DECODE}
RUNTESTDEFAULTFLAGS = --srcdir=${TEST_DIR} --tool default ${DEJAGNU_GLOBALS_BIN} ${DEJAGNU_GLOBALS_BASE64}
2020-03-14 20:31:20 +00:00
EXTRA_DEJAGNU_SITE_CONFIG = ../tests/init.exp