1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
AUTOMAKE_OPTIONS = 1.6
# EXTRA_DIST = fonts regtest
noinst_PROGRAMS = GrcRegressionTest
AM_CPPFLAGS = -I$(top_srcdir)/../../compiler
GrcRegressionTest_LDFLAGS = $(GR2_LIBS)
GrcRegressionTest_SOURCES = \
main.h \
stdafx.h \
TestCase.h \
CompareFontTables.cpp \
FileInput.cpp \
GrcRtFileFont.h \
GrcRtFileFont.cpp \
GrcRegressionTest.cpp \
FileInput.h \
FontTableCache.h \
$(top_srcdir)/../../compiler/TtfUtil.cpp \
$(top_srcdir)/../../compiler/TtfUtil.h \
$(top_srcdir)/../../compiler/TtfTypes.h \
fonts \
regtest
# FontStubb.cpp
check-local: GrcRegressionTest
$(top_srcdir)/regtest -k -v -g ../../compiler/grcompiler -p ../../preprocessor/gdlpp -r ./GrcRegressionTest -d . $(top_srcdir)/fonts
dist-hook:
rm -f regtest.log gdlerr.txt grcregtest.log
find $(distdir) -name "dbg_*" | xargs rm -rf
rm -f *Test*.ttf
CLEANFILES=regtest.log gdlerr.txt grcregtest.log *Test*.ttf
|