File: Makefile.am

package info (click to toggle)
libncl 2.1.18%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,344 kB
  • ctags: 3,526
  • sloc: xml: 43,716; cpp: 30,400; sh: 10,658; python: 231; makefile: 190
file content (33 lines) | stat: -rw-r--r-- 1,972 bytes parent folder | download | duplicates (5)
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
LDADD       = @top_builddir@/ncl/libncl.la
AM_CPPFLAGS = -I@top_srcdir@/ncl
bin_PROGRAMS = NEXUSnormalizer NEXUSvalidator NCLconverter
noinst_PROGRAMS = NEXUSinspector NEX_us2ml NEXUSunion

EXTERNAL_FLAG=-e

check-local: NEXUSnormalizer
	$(PYTHON) $(top_srcdir)/test/roundTripNCLTest.py $(top_builddir)/example/normalizer/NEXUSnormalizer $(top_srcdir)/data/characters.nex $(top_srcdir)/test/data
	$(PYTHON) $(top_srcdir)/test/roundTripNCLTest.py $(top_builddir)/example/normalizer/NEXUSnormalizer $(top_srcdir)/data/sample.tre $(top_srcdir)/test/data
	$(PYTHON) $(top_srcdir)/test/roundTripNCLTest.py $(top_builddir)/example/normalizer//NEXUSnormalizer $(top_srcdir)/test/NTSValidIn $(top_srcdir)/test/NTSValidOut
	$(PYTHON) $(top_srcdir)/test/roundTripNCLTest.py -x $(top_builddir)/example/normalizer/NEXUSnormalizer $(top_srcdir)/test/funkyValidIn $(top_srcdir)/test/funkyValidOut
	$(PYTHON) $(top_srcdir)/test/roundTripNCLTest.py $(EXTERNAL_FLAG) $(top_builddir)/example/normalizer/NEXUSnormalizer $(top_srcdir)/test/ExternalValidIn $(top_srcdir)/test/ExternalValidOut
	$(PYTHON) $(top_srcdir)/test/roundTripNCLTest.py -i -e $(top_builddir)/example/normalizer/NEXUSnormalizer $(top_srcdir)/test/ExternalInvalidIn
	$(PYTHON) $(top_srcdir)/test/roundTripNCLTest.py -a $(top_builddir)/example/normalizer/NEXUSnormalizer
	

NEXUSnormalizer_SOURCES = normalizer.cpp normalizer.h

NEXUSvalidator_SOURCES = normalizer.cpp normalizer.h
NEXUSvalidator_CPPFLAGS = $(AM_CPPFLAGS) -DJUST_VALIDATE_NEXUS

NEXUSinspector_SOURCES = normalizer.cpp normalizer.h
NEXUSinspector_CPPFLAGS = $(AM_CPPFLAGS) -DJUST_REPORT_NEXUS

NEX_us2ml_SOURCES = normalizer.cpp normalizer.h us2ml.cpp
NEX_us2ml_CPPFLAGS = $(AM_CPPFLAGS) -DTO_NEXML_CONVERTER

NEXUSunion_SOURCES = normalizer.cpp normalizer.h
NEXUSunion_CPPFLAGS = $(AM_CPPFLAGS) -DMULTIFILE_NEXUS_READER

NCLconverter_SOURCES = normalizer.cpp normalizer.h us2ml.cpp converter.cpp
NCLconverter_CPPFLAGS = $(AM_CPPFLAGS) -DNCL_CONVERTER_APP