diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-05-08 16:06:44 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-05-08 16:06:44 +0200 |
commit | ffb99f341626251535596ac3e177a4df7f17c030 (patch) | |
tree | ab57ead19ea2405be8bf1e546aa32a69a572bfee /test | |
parent | ae96f2a5d8e4bd0597a411fc6a5b66bb2b741af9 (diff) |
Fix random build to not invlude the 'random' binary in the #include <random> line.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 3633ad8..a3a6294 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -3,7 +3,7 @@ include $(top_srcdir)/src/Makefile.am.drumgizmo TESTS = resource engine gui resampler lv2 configfile audiocache \ audiocachefile audiocacheidmanager audiocacheeventhandler \ - memchecker random atomictest syncedsettingstest + memchecker randomtest atomictest syncedsettingstest check_PROGRAMS = $(TESTS) @@ -119,19 +119,19 @@ configfile_SOURCES = \ memchecker_CXXFLAGS = -DOUTPUT=\"memchecker\" $(CPPUNIT_CFLAGS) \ -I$(top_srcdir)/src -I$(top_srcdir)/include \ -I$(top_srcdir)/hugin -DDISABLE_HUGIN $(PTHREAD_CFLAGS) -memcheckere_CFLAGS = -DDISABLE_HUGIN +memchecker_CFLAGS = -DDISABLE_HUGIN memchecker_LDFLAGS = $(CPPUNIT_LIBS) $(DRUMGIZMO_LIBS) $(PTHREAD_LIBS) memchecker_SOURCES = \ $(DRUMGIZMO_SOURCES) \ test.cc \ memcheckertest.cc -random_CXXFLAGS = -DOUTPUT=\"random\" $(CPPUNIT_CFLAGS) \ +randomtest_CXXFLAGS = -DOUTPUT=\"randomtest\" $(CPPUNIT_CFLAGS) \ -I$(top_srcdir)/src \ -I$(top_srcdir)/hugin -DDISABLE_HUGIN -random_CFLAGS = -DDISABLE_HUGIN -random_LDFLAGS = $(CPPUNIT_LIBS) -random_SOURCES = \ +randomtest_CFLAGS = -DDISABLE_HUGIN +randomtest_LDFLAGS = $(CPPUNIT_LIBS) +randomtest_SOURCES = \ $(top_srcdir)/src/random.cc \ test.cc \ randomtest.cc |