|
14 | 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 | 15 | # General Public License for more details. |
16 | 16 |
|
| 17 | +### ADS: the file md5sum.txt can be regenerated by running the tests |
| 18 | +### with "make check" and then doing `md5sum tests/* > md5sum.txt` |
| 19 | +### from the build directory. |
| 20 | + |
| 21 | +ACLOCAL_AMFLAGS = -I m4 |
| 22 | + |
| 23 | +SUBDIRS := src/smithlab_cpp src/abismal |
| 24 | +install installdirs: SUBDIRS := $(filter-out src/smithlab_cpp src/abismal, $(SUBDIRS)) |
| 25 | +AM_CPPFLAGS = -I $(top_srcdir)/src/common -I $(top_srcdir)/src/smithlab_cpp -I $(top_srcdir)/src/bamxx |
| 26 | + |
| 27 | +AM_CXXFLAGS = $(OPENMP_CXXFLAGS) |
| 28 | +CXXFLAGS = -Wall -Wextra -Wpedantic -Wno-unknown-attributes |
| 29 | +CXXFLAGS += -O3 -DNDEBUG # default has optimization on |
| 30 | + |
17 | 31 | EXTRA_DIST = \ |
18 | 32 | README.md \ |
19 | 33 | code_of_conduct.md \ |
@@ -87,19 +101,6 @@ EXTRA_DIST = \ |
87 | 101 | test_scripts/test_diff.test \ |
88 | 102 | test_scripts/test_mlml.test |
89 | 103 |
|
90 | | -### ADS: the file md5sum.txt can be regenerated by running the tests |
91 | | -### with "make check" and then doing `md5sum tests/* > md5sum.txt` |
92 | | -### from the build directory. |
93 | | - |
94 | | -ACLOCAL_AMFLAGS = -I m4 |
95 | | - |
96 | | -SUBDIRS := src/smithlab_cpp src/abismal |
97 | | -install installdirs: SUBDIRS := $(filter-out src/smithlab_cpp src/abismal, $(SUBDIRS)) |
98 | | -AM_CPPFLAGS = -I $(top_srcdir)/src/common -I $(top_srcdir)/src/smithlab_cpp -I $(top_srcdir)/src/bamxx |
99 | | - |
100 | | -AM_CXXFLAGS = $(OPENMP_CXXFLAGS) |
101 | | -CXXFLAGS = -Wall -O3 # default has optimization on |
102 | | - |
103 | 104 | ### ADS: Testing with `make check` can be a long process. Testing with |
104 | 105 | ### `make check` is designed to work recursively. Modifying this |
105 | 106 | ### behavior requires overriding build-in rules which generates |
|
0 commit comments