mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-11 15:20:48 +01:00
this should more or less render make dist functional see tests/freej-build-test.sh to obtain a list of files between git and make dist
24 lines
540 B
Makefile
24 lines
540 B
Makefile
|
|
CXXTEST_TESTSUITES = $(srcdir)/testClosure.h
|
|
|
|
CXXTESTHOME = $(top_srcdir)/tests/cxxtest
|
|
CXXTESTFLAGS = --have-eh --error-printer
|
|
CXXTESTGEN = $(CXXTESTHOME)/cxxtestgen.pl $(CXXTESTFLAGS)
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include \
|
|
-I$(CXXTESTHOME)
|
|
|
|
noinst_HEADERS = testClosure.h
|
|
|
|
check_PROGRAMS = cxxtests
|
|
TESTS = $(check_PROGRAMS)
|
|
CLEANFILES = cxxtests.cpp
|
|
|
|
cxxtests_SOURCES = cxxtests.cpp
|
|
cxxtests_LDADD = $(top_builddir)/src/libfreej.la
|
|
|
|
cxxtests.cpp: $(CXXTEST_TESTSUITES)
|
|
$(CXXTESTGEN) -o $@ $^
|
|
|
|
EXTRA_DIST = cxxtest
|