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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
Description: debianization: examples
Ad hoc solution to install example material (examples + testsuite); this is
a Debian centric patch in order to maintain a minimal d/rules script.
Origin: vendor, Debian
Forwarded: not-needed
Author: Jerome Benoit <calculus@rezozer.net>
Last-Update: 2019-11-02
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -2,6 +2,8 @@
# Written by Patrick Guio <patrick.guio@fys.uio.no>
#
+examplesdir = $(docdir)/examples
+
EXTRA_DIST = stencil4.f profile.cpp tiny2.cpp tiny3.cpp
AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir) $(BOOST_CPPFLAGS)
@@ -60,8 +62,14 @@
where_SOURCES = where.cpp
whitt_SOURCES = whitt.cpp
+LISTOFSOURCES_EXAMPLES = $(foreach prg,$(check_PROGRAMS),$($(prg)_SOURCES))
+
check-examples: check
+install-examples: $(LISTOFSOURCES_EXAMPLES)
+ $(MKDIR_P) $(DESTDIR)/$(examplesdir)
+ $(INSTALL_DATA) $^ $(DESTDIR)/$(examplesdir)
+
#all:
clean-local:
--- a/testsuite/Makefile.am
+++ b/testsuite/Makefile.am
@@ -4,6 +4,8 @@
# Blitz++ test suite makefile
+testsuitedir = $(docdir)/testsuite
+
AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir) $(BOOST_CPPFLAGS)
AM_CXXFLAGS = @CXX_DEBUG_FLAGS@ -DBZ_DEBUG -fpermissive
AM_LDFLAGS = $(BOOST_LDFLAGS)
@@ -116,7 +118,13 @@
where_SOURCES = where.cpp
zeek_1_SOURCES = zeek-1.cpp
+LISTOFSOURCES_TESTSUITE_TESTS = $(check_HEADERS) $(foreach prg,$(check_PROGRAMS),$($(prg)_SOURCES))
+
check-testsuite: check
+install-testsuite: $(LISTOFSOURCES_TESTSUITE_TESTS)
+ $(MKDIR_P) $(DESTDIR)/$(testsuitedir)
+ $(INSTALL_DATA) $^ $(DESTDIR)/$(testsuitedir)
+
clean-local:
-rm -rf *.ii *.ti cxx_repository Template.dir ii_files ti_files
--- a/testsuite/64bit.cpp
+++ b/testsuite/64bit.cpp
@@ -26,7 +26,7 @@
// index expression since that makes it very slow.
test = 42;
unsigned char crap= test(255,255,255,255);
- cerr << int(crap) << endl;
+ cout << int(crap) << endl;
BZTEST(test(255,255,255,255)==42);
test = test + test;
BZTEST(test(255,255,255,255)==84);
|