Add copyright and licence notice to Makefile.am
[pspp] / Makefile.am
1 ## PSPP - a program for statistical analysis.
2 ## Copyright (C) 2019 Free Software Foundation, Inc.
3 ##
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.
8 ##
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.
13 ##
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/>.
16
17 ## Process this file with automake to produce Makefile.in  -*- makefile -*-
18
19 AUTOMAKE_OPTIONS = std-options check-news 1.10.1 subdir-objects
20
21 SUBDIRS = gl po
22 DISTCLEANFILES = ./po/stamp-po xconfigure 
23 BUILT_SOURCES =
24
25 AM_CPPFLAGS = \
26         -I$(top_srcdir)/gl \
27         -I$(top_builddir)/gl \
28         -DINSTALLDIR=\"$(bindir)\"
29
30 AM_V_P ?= :
31
32 AM_CFLAGS=
33
34 if cc_is_gcc
35 AM_CFLAGS+=-Wall -W -Wwrite-strings -Wstrict-prototypes \
36 -Wpointer-arith -Wno-sign-compare -Wmissing-prototypes
37 endif
38
39 .q.c:
40         @$(MKDIR_P) `dirname $@`
41         $(AM_V_GEN)./src/language/lexer/q2c$(EXEEXT_FOR_BUILD) $< $@
42
43 $(all_q_sources:.q=.c): src/language/lexer/q2c$(EXEEXT_FOR_BUILD)
44 all_q_sources =
45
46 pkgsysconfdir = $(sysconfdir)/$(PACKAGE)
47
48
49 EXTRA_DIST = ONEWS pspp-mode.el
50
51 CLEANFILES = 
52 CLEAN_LOCAL =
53 ALL_LOCAL =
54 CHECK_LOCAL =
55 ACLOCAL_AMFLAGS = -I m4 -I gl/m4
56 noinst_LIBRARIES=
57 noinst_LTLIBRARIES=
58 noinst_PROGRAMS=
59 check_PROGRAMS=
60 bin_PROGRAMS=
61 dist_man_MANS =
62 DIST_HOOKS =
63 INSTALL_DATA_HOOKS = 
64 UNINSTALL_DATA_HOOKS =
65 PHONY =
66 SUFFIXES = .q
67 LDADD = gl/libgl.la
68
69 # This ensures that files added to EXTRA_DIST are always distributed,
70 # even if they are inside an Automake if...endif conditional block that is
71 # disabled by some particular "configure" run.  For more information, see:
72 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
73 noinst_HEADERS = $(EXTRA_DIST)
74
75 generate-changelog:
76         if test -d $(top_srcdir)/.git; then                     \
77           $(top_srcdir)/build-aux/gitlog-to-changelog --since=2008-07-27  --srcdir=$(top_srcdir) \
78             > $(distdir)/cl-t || exit 1;                                        \
79           rm -f $(distdir)/ChangeLog;                           \
80           mv $(distdir)/cl-t $(distdir)/ChangeLog;              \
81         fi
82
83 DIST_HOOKS += generate-changelog
84
85
86 include $(top_srcdir)/build-aux/automake.mk
87 include $(top_srcdir)/po/automake.mk
88 include $(top_srcdir)/lib/automake.mk
89 include $(top_srcdir)/doc/automake.mk
90 include $(top_srcdir)/examples/automake.mk
91 include $(top_srcdir)/src/automake.mk
92 include $(top_srcdir)/utilities/automake.mk
93 include $(top_srcdir)/tests/automake.mk
94
95 if WITH_GUI_TOOLS
96 include $(top_srcdir)/glade/automake.mk
97 endif
98
99 if WITH_PERL_MODULE
100 include $(top_srcdir)/perl-module/automake.mk
101 endif
102
103 PHONY += $(DIST_HOOKS) $(INSTALL_DATA_HOOKS) $(UNINSTALL_DATA_HOOKS)
104
105 .PHONY: $(PHONY)
106
107 dist-hook: $(DIST_HOOKS)
108
109 install-data-hook: $(INSTALL_DATA_HOOKS)
110
111 uninstall-hook: $(UNINSTALL_DATA_HOOKS)
112
113 clean-local: $(CLEAN_LOCAL)
114 all-local: $(ALL_LOCAL)
115 check-local: $(CHECK_LOCAL)
116
117 # A convenience target to build all the binaries
118 programs: $(PROGRAMS)
119
120 # The following rules are from Open vSwitch.  The original copyright notice
121 # and license are:
122 #
123 # Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
124 #
125 # Copying and distribution of this file, with or without modification,
126 # are permitted in any medium without royalty provided the copyright
127 # notice and this notice are preserved.  This file is offered as-is,
128 # without warranty of any kind.
129
130 # If we're checked out from a Git repository, make sure that every
131 # file that is in Git is distributed.
132 ALL_LOCAL += dist-hook-git
133 dist-hook-git: distfiles
134         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
135           (cd $(srcdir) && git ls-files)                                    \
136             | grep -vE '\.gitignore|README.Git|Smake|Bug-administration'    \
137             | LC_ALL=C sort -u > gitfiles;                                  \
138           LC_ALL=C comm -1 -3 distfiles gitfiles > missing-distfiles;       \
139           if test -s missing-distfiles; then                                \
140             echo "The distribution is missing the following files:";        \
141             cat missing-distfiles;                                          \
142             exit 1;                                                         \
143           fi;                                                               \
144         fi
145 # The following is based on commands for the Automake "distdir" target.
146 distfiles: Makefile
147         @srcdirstrip=`echo "$(srcdir)" | $(SED) 's/[].[^$$\\*]/\\\\&/g'`; \
148         topsrcdirstrip=`echo "$(top_srcdir)" | $(SED) 's/[].[^$$\\*]/\\\\&/g'`; \
149         list='$(DISTFILES)'; \
150         for file in $$list; do echo $$file; done | \
151           $(SED) -e "s|^$$srcdirstrip/||;t" \
152               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" \
153           | LC_ALL=C sort -u > $@
154 CLEANFILES += distfiles gitfiles missing-distfiles
155 .PHONY: dist-hook-git