Update NEWS file
[geda-gaf.git] / Makefile.am
blob97479d68c882907dbef5f04fce638ab6f874f515
1 # Copyright (C) 2013-2017 Roland Lutz
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software Foundation,
15 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 SUBDIRS = \
18         po \
19         src/storage \
20         src/cpython/storage \
21         src/cpython/guile \
22         src/python \
23         src/command \
24         src/backend \
25         tests \
26         tests/netlist
28 include_HEADERS = include/xornstorage.h
30 nodist_noinst_PYTHON = built-packages/xorn.py
31 all-local: $(nodist_noinst_PYTHON)
32 built-packages/xorn.py: Makefile
33         $(AM_V_GEN)$(MKDIR_P) built-packages && { \
34             echo '__path__ = ["$(abs_builddir)/src/cpython/storage/.libs",'; \
35             echo '            "$(abs_builddir)/src/cpython/guile/.libs",'; \
36             echo '            "$(abs_builddir)/src/python",'; \
37             echo '            "$(abs_srcdir)/src/python"]'; \
38         } > $@
40 CLEANFILES = \
41         built-packages/xorn.py \
42         built-packages/xorn.pyc
44 ACLOCAL_AMFLAGS = -I m4
46 EXTRA_DIST = \
47         pprint-chlog \
48         doc/HACKING \
49         doc/mainpage.md \
50         doc/storage.md \
51         doc/api/Doxyfile \
52         doc/api/storage.dox \
53         doc/api/using-storage.md \
54         doc/geda/colors.md \
55         doc/geda/coordinatespace.jpg \
56         doc/geda/data.dox \
57         doc/geda/file_format_spec \
58         doc/geda/fileformat_textgraphic.jpg \
59         doc/geda/filltype.svg \
60         doc/geda/linetype.svg \
61         doc/geda/path_example_and_gate-smaller.png \
62         doc/geda/xml-file-format.md
64 dist-hook:
65         if test -d $(srcdir)/.git; \
66         then    chmod u+w $(distdir)/ChangeLog; \
67                 ( cd $(srcdir); ./pprint-chlog ) > $(distdir)/ChangeLog; \
68         fi
70 doxygen:
71         cd $(srcdir)/doc/api && doxygen
73 .PHONY: doxygen