1 # PSPP - a program for statistical analysis.
2 # Copyright (C) 2017 Free Software Foundation, Inc.
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 ## Process this file with automake to produce Makefile.in -*- makefile -*-
19 include $(top_srcdir)/src/language/lexer/automake.mk
20 include $(top_srcdir)/src/language/xforms/automake.mk
21 include $(top_srcdir)/src/language/control/automake.mk
22 include $(top_srcdir)/src/language/dictionary/automake.mk
23 include $(top_srcdir)/src/language/tests/automake.mk
24 include $(top_srcdir)/src/language/utilities/automake.mk
25 include $(top_srcdir)/src/language/stats/automake.mk
26 include $(top_srcdir)/src/language/data-io/automake.mk
27 include $(top_srcdir)/src/language/expressions/automake.mk
29 noinst_LTLIBRARIES += src/language/liblanguage.la
32 src_language_liblanguage_la_SOURCES = \
33 src/language/command.c \
34 src/language/command.h \
35 src/language/command.def \
36 $(language_lexer_sources) \
37 $(language_xforms_sources) \
38 $(language_control_sources) \
39 $(language_dictionary_sources) \
40 $(language_tests_sources) \
41 $(language_utilities_sources) \
42 $(language_stats_sources) \
43 $(language_data_io_sources) \
44 $(language_expressions_sources)
47 nodist_src_language_liblanguage_la_SOURCES = \
48 $(src_language_data_io_built_sources) \
49 $(src_language_utilities_built_sources) \
50 $(src_language_stats_built_sources) \
51 $(language_tests_built_sources) \
52 $(expressions_built_sources)