LICENSES: move the GPL-2.0 license as required by checkpatch
[fw/openocd] / Makefile.am
1 # not a GNU package. You can remove this line, if
2 # have all needed files, that a GNU package needs
3 AUTOMAKE_OPTIONS = gnu 1.6
4
5 # make sure we pass the correct jimtcl flags to distcheck
6 DISTCHECK_CONFIGURE_FLAGS = --disable-install-jim
7
8 # do not run Jim Tcl tests (esp. during distcheck)
9 check-recursive: SUBDIRS :=
10
11 nobase_dist_pkgdata_DATA = \
12         contrib/libdcc/dcc_stdio.c \
13         contrib/libdcc/dcc_stdio.h \
14         contrib/libdcc/example.c \
15         contrib/libdcc/README \
16         contrib/60-openocd.rules
17
18 SUBDIRS =
19 DIST_SUBDIRS =
20 bin_PROGRAMS =
21 noinst_LTLIBRARIES =
22 info_TEXINFOS =
23 dist_man_MANS =
24 EXTRA_DIST =
25
26 if INTERNAL_JIMTCL
27 SUBDIRS += jimtcl
28 DIST_SUBDIRS += jimtcl
29 endif
30
31 # common flags used in openocd build
32 AM_CFLAGS = $(GCC_WARNINGS)
33
34 AM_CPPFLAGS = $(HOST_CPPFLAGS)\
35                           -I$(top_srcdir)/src \
36                           -I$(top_builddir)/src \
37                           -I$(top_srcdir)/src/helper \
38                           -DPKGDATADIR=\"$(pkgdatadir)\" \
39                           -DBINDIR=\"$(bindir)\"
40
41 if INTERNAL_JIMTCL
42 AM_CPPFLAGS += -I$(top_srcdir)/jimtcl \
43                            -I$(top_builddir)/jimtcl
44 endif
45 EXTRA_DIST += \
46         BUGS \
47         HACKING \
48         NEWTAPS \
49         README.Windows \
50         README.macOS \
51         $(EXTRA_DIST_NEWS) \
52         Doxyfile.in \
53         LICENSES/preferred/GPL-2.0 \
54         tools/logger.pl \
55         tools/rlink_make_speed_table \
56         tools/st7_dtc_as \
57         contrib
58
59 libtool: $(LIBTOOL_DEPS)
60         $(SHELL) ./config.status --recheck
61
62 docs: pdf html doxygen
63
64 Doxyfile: $(srcdir)/Doxyfile.in
65         @echo "Creating $@ from $<..."
66         @( \
67           echo "### @@@ -= DO NOT EDIT THIS FILE =- @@@ ###" && \
68           echo "### @@@ Make changes to Doxyfile.in @@@ ###" && \
69           sed -e 's,@srcdir\@,$(srcdir),' \
70             -e 's,@builddir\@,$(builddir),' \
71             -e 's,@doxygen_as_html\@,$(doxygen_as_html),' \
72             -e 's,@doxygen_as_pdf\@,$(doxygen_as_pdf),' $< \
73         ) > $@
74
75 THE_MANUAL = doxygen/latex/refman.pdf
76
77 doxygen::
78         $(MAKE) Doxyfile
79         doxygen Doxyfile 2>&1 | perl $(srcdir)/tools/logger.pl > doxygen.log
80         @if [ -f doxygen/latex/refman.tex ]; then \
81                 echo "Creating $(THE_MANUAL)..."; \
82                 $(MAKE) $(THE_MANUAL); \
83         else \
84                 echo "Skipping Doxygen PDF..."; \
85         fi
86
87 $(THE_MANUAL): %.pdf: %.tex
88         -cd $$(dirname $*) && pdflatex $$(basename $*)
89         -cd $$(dirname $*) && pdflatex $$(basename $*)
90
91 TCL_PATH = tcl
92 # command to find paths of script files, relative to TCL_PATH
93 TCL_FILES = find $(srcdir)/$(TCL_PATH) -name '*.cfg' -o -name '*.tcl' -o -name '*.txt' | \
94                 sed -e 's,^$(srcdir)/$(TCL_PATH),,'
95
96 dist-hook:
97         if test -d $(srcdir)/.git -a \( ! -e $(distdir)/ChangeLog -o -w $(distdir)/ChangeLog \) ; then \
98                 git --git-dir $(srcdir)/.git log | $(srcdir)/tools/git2cl/git2cl > $(distdir)/ChangeLog ; \
99         fi
100         for i in $$($(TCL_FILES)); do \
101                 j="$(distdir)/$(TCL_PATH)/$$i" && \
102                 mkdir -p "$$(dirname $$j)" && \
103                 $(INSTALL_DATA) $(srcdir)/$(TCL_PATH)/$$i $$j; \
104         done
105
106 install-data-hook:
107         for i in $$($(TCL_FILES)); do \
108                 j="$(DESTDIR)$(pkgdatadir)/scripts/$$i" && \
109                 mkdir -p "$$(dirname $$j)" && \
110                 $(INSTALL_DATA) $(srcdir)/$(TCL_PATH)/$$i $$j; \
111         done
112
113 uninstall-hook:
114         rm -rf $(DESTDIR)$(pkgdatadir)/scripts
115
116 distclean-local:
117         rm -rf Doxyfile doxygen
118         rm -f $(srcdir)/jimtcl/configure.gnu
119 # FIXME: workaround for jimtcl 0.80 only. Remove from jimtcl 0.81
120         rm -f jimtcl/examples.api/Makefile
121
122 DISTCLEANFILES = doxygen.log
123
124 METASOURCES = AUTO
125
126 BUILT_SOURCES =
127 CLEANFILES =
128
129 MAINTAINERCLEANFILES = \
130         %D%/INSTALL \
131         %D%/configure \
132         %D%/Makefile.in \
133         %D%/depcomp \
134         %D%/config.guess \
135         %D%/config.sub \
136         %D%/config.h.in \
137         %D%/config.h.in~ \
138         %D%/compile \
139         %D%/ltmain.sh \
140         %D%/missing \
141         %D%/aclocal.m4 \
142         %D%/install-sh \
143         %D%/texinfo.tex
144
145 include src/Makefile.am
146 include doc/Makefile.am