https://github.com/JeffersonLab/chroma
Raw File
Tip revision: 2b26cd98bcac830268245a01ea86bf6b2e46df9c authored by Balint Joo on 04 May 2018, 17:44:13 UTC
Updated License to 2018 Jefferson Lab License
Tip revision: 2b26cd9
Makefile.am
#
# Recurse down into lib (to build the library)
#                   examples (build examples)
#                   includes (to install includes)
#
SUBDIRS = other_libs lib mainprogs

#
# The end user's configuration script
# 
bin_SCRIPTS = chroma-config

#
# All the other goodies
#
EXTRA_DIST = install_scripts tests docs


# xmldiff targets
.PHONY: xcheck report

xcheck:
	perl $(top_srcdir)/scripts/run_chroma_xmldiff.pl $(top_srcdir) $(top_builddir) @XMLDIFF@ $(top_builddir)/RUN

report:
	perl $(top_srcdir)/scripts/check_regres_runner.pl $(top_srcdir) $(top_builddir) @XMLDIFF@
	xsltproc $(top_srcdir)/scripts/regres_report_to_html.xsl $(top_builddir)/regres_report.xml > regres_report.html


back to top