LICENSES: Add the MIT license
[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/license-rules.txt \
54         LICENSES/preferred/BSD-1-Clause \
55         LICENSES/preferred/BSD-2-Clause \
56         LICENSES/preferred/BSD-3-Clause \
57         LICENSES/preferred/GFDL-1.2 \
58         LICENSES/preferred/gfdl-1.2.texi.readme \
59         LICENSES/preferred/GPL-2.0 \
60         LICENSES/preferred/MIT \
61         LICENSES/stand-alone/GPL-3.0 \
62         tools/logger.pl \
63         tools/rlink_make_speed_table \
64         tools/st7_dtc_as \
65         contrib
66
67 libtool: $(LIBTOOL_DEPS)
68         $(SHELL) ./config.status --recheck
69
70 docs: pdf html doxygen
71
72 Doxyfile: $(srcdir)/Doxyfile.in
73         @echo "Creating $@ from $<..."
74         @( \
75           echo "### @@@ -= DO NOT EDIT THIS FILE =- @@@ ###" && \
76           echo "### @@@ Make changes to Doxyfile.in @@@ ###" && \
77           sed -e 's,@srcdir\@,$(srcdir),' \
78             -e 's,@builddir\@,$(builddir),' \
79             -e 's,@doxygen_as_html\@,$(doxygen_as_html),' \
80             -e 's,@doxygen_as_pdf\@,$(doxygen_as_pdf),' $< \
81         ) > $@
82
83 THE_MANUAL = doxygen/latex/refman.pdf
84
85 doxygen::
86         $(MAKE) Doxyfile
87         doxygen Doxyfile 2>&1 | perl $(srcdir)/tools/logger.pl > doxygen.log
88         @if [ -f doxygen/latex/refman.tex ]; then \
89                 echo "Creating $(THE_MANUAL)..."; \
90                 $(MAKE) $(THE_MANUAL); \
91         else \
92                 echo "Skipping Doxygen PDF..."; \
93         fi
94
95 $(THE_MANUAL): %.pdf: %.tex
96         -cd $$(dirname $*) && pdflatex $$(basename $*)
97         -cd $$(dirname $*) && pdflatex $$(basename $*)
98
99 TCL_PATH = tcl
100 # command to find paths of script files, relative to TCL_PATH
101 TCL_FILES = find $(srcdir)/$(TCL_PATH) -name '*.cfg' -o -name '*.tcl' -o -name '*.txt' | \
102                 sed -e 's,^$(srcdir)/$(TCL_PATH),,'
103
104 dist-hook:
105         if test -d $(srcdir)/.git -a \( ! -e $(distdir)/ChangeLog -o -w $(distdir)/ChangeLog \) ; then \
106                 git --git-dir $(srcdir)/.git log | $(srcdir)/tools/git2cl/git2cl > $(distdir)/ChangeLog ; \
107         fi
108         for i in $$($(TCL_FILES)); do \
109                 j="$(distdir)/$(TCL_PATH)/$$i" && \
110                 mkdir -p "$$(dirname $$j)" && \
111                 $(INSTALL_DATA) $(srcdir)/$(TCL_PATH)/$$i $$j; \
112         done
113
114 install-data-hook:
115         for i in $$($(TCL_FILES)); do \
116                 j="$(DESTDIR)$(pkgdatadir)/scripts/$$i" && \
117                 mkdir -p "$$(dirname $$j)" && \
118                 $(INSTALL_DATA) $(srcdir)/$(TCL_PATH)/$$i $$j; \
119         done
120
121 uninstall-hook:
122         rm -rf $(DESTDIR)$(pkgdatadir)/scripts
123
124 distclean-local:
125         rm -rf Doxyfile doxygen
126         rm -f $(srcdir)/jimtcl/configure.gnu
127 # FIXME: workaround for jimtcl 0.80 only. Remove from jimtcl 0.81
128         rm -f jimtcl/examples.api/Makefile
129
130 DISTCLEANFILES = doxygen.log
131
132 METASOURCES = AUTO
133
134 BUILT_SOURCES =
135 CLEANFILES =
136
137 MAINTAINERCLEANFILES = \
138         %D%/INSTALL \
139         %D%/configure \
140         %D%/Makefile.in \
141         %D%/depcomp \
142         %D%/config.guess \
143         %D%/config.sub \
144         %D%/config.h.in \
145         %D%/config.h.in~ \
146         %D%/compile \
147         %D%/ltmain.sh \
148         %D%/missing \
149         %D%/aclocal.m4 \
150         %D%/install-sh \
151         %D%/texinfo.tex
152
153 include src/Makefile.am
154 include doc/Makefile.am