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
7 # make sure we pass the correct jimtcl flags to distcheck
8 DISTCHECK_CONFIGURE_FLAGS = --disable-install-jim
10 # do not run Jim Tcl tests (esp. during distcheck)
11 check-recursive: SUBDIRS :=
13 nobase_dist_pkgdata_DATA = \
14 contrib/libdcc/dcc_stdio.c \
15 contrib/libdcc/dcc_stdio.h \
16 contrib/libdcc/example.c \
17 contrib/libdcc/README \
18 contrib/60-openocd.rules
30 DIST_SUBDIRS += jimtcl
33 # common flags used in openocd build
34 AM_CFLAGS = $(GCC_WARNINGS)
36 AM_CPPFLAGS = $(HOST_CPPFLAGS)\
38 -I$(top_builddir)/src \
39 -DPKGDATADIR=\"$(pkgdatadir)\" \
40 -DBINDIR=\"$(bindir)\"
43 AM_CPPFLAGS += -I$(top_srcdir)/jimtcl \
44 -I$(top_builddir)/jimtcl
54 LICENSES/license-rules.txt \
55 LICENSES/preferred/BSD-1-Clause \
56 LICENSES/preferred/BSD-2-Clause \
57 LICENSES/preferred/BSD-3-Clause \
58 LICENSES/preferred/GFDL-1.2 \
59 LICENSES/preferred/gfdl-1.2.texi.readme \
60 LICENSES/preferred/GPL-2.0 \
61 LICENSES/preferred/MIT \
62 LICENSES/stand-alone/GPL-3.0 \
64 tools/rlink_make_speed_table \
68 libtool: $(LIBTOOL_DEPS)
69 $(SHELL) ./config.status --recheck
71 docs: pdf html doxygen
73 Doxyfile: $(srcdir)/Doxyfile.in
74 @echo "Creating $@ from $<..."
76 echo "### @@@ -= DO NOT EDIT THIS FILE =- @@@ ###" && \
77 echo "### @@@ Make changes to Doxyfile.in @@@ ###" && \
78 sed -e 's,@srcdir\@,$(srcdir),' \
79 -e 's,@builddir\@,$(builddir),' \
80 -e 's,@doxygen_as_html\@,$(doxygen_as_html),' \
81 -e 's,@doxygen_as_pdf\@,$(doxygen_as_pdf),' $< \
84 THE_MANUAL = doxygen/latex/refman.pdf
88 doxygen Doxyfile 2>&1 | perl $(srcdir)/tools/logger.pl > doxygen.log
89 @if [ -f doxygen/latex/refman.tex ]; then \
90 echo "Creating $(THE_MANUAL)..."; \
91 $(MAKE) $(THE_MANUAL); \
93 echo "Skipping Doxygen PDF..."; \
96 $(THE_MANUAL): %.pdf: %.tex
97 -cd $$(dirname $*) && pdflatex $$(basename $*)
98 -cd $$(dirname $*) && pdflatex $$(basename $*)
101 # command to find paths of script files, relative to TCL_PATH
102 TCL_FILES = find $(srcdir)/$(TCL_PATH) -name '*.cfg' -o -name '*.tcl' -o -name '*.txt' | \
103 sed -e 's,^$(srcdir)/$(TCL_PATH),,'
106 if test -d $(srcdir)/.git -a \( ! -e $(distdir)/ChangeLog -o -w $(distdir)/ChangeLog \) ; then \
107 git --git-dir $(srcdir)/.git log | $(srcdir)/tools/git2cl/git2cl > $(distdir)/ChangeLog ; \
109 for i in $$($(TCL_FILES)); do \
110 j="$(distdir)/$(TCL_PATH)/$$i" && \
111 mkdir -p "$$(dirname $$j)" && \
112 $(INSTALL_DATA) $(srcdir)/$(TCL_PATH)/$$i $$j; \
116 for i in $$($(TCL_FILES)); do \
117 j="$(DESTDIR)$(pkgdatadir)/scripts/$$i" && \
118 mkdir -p "$$(dirname $$j)" && \
119 $(INSTALL_DATA) $(srcdir)/$(TCL_PATH)/$$i $$j; \
123 rm -rf $(DESTDIR)$(pkgdatadir)/scripts
126 rm -rf Doxyfile doxygen
127 rm -f $(srcdir)/jimtcl/configure.gnu
129 DISTCLEANFILES = doxygen.log
136 MAINTAINERCLEANFILES = \
152 include src/Makefile.am
153 include doc/Makefile.am