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
5 # make sure we pass the correct jimtcl flags to distcheck
6 DISTCHECK_CONFIGURE_FLAGS = --disable-install-jim
8 # do not run Jim Tcl tests (esp. during distcheck)
9 check-recursive: SUBDIRS :=
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
28 DIST_SUBDIRS += jimtcl
31 # common flags used in openocd build
32 AM_CFLAGS = $(GCC_WARNINGS)
34 AM_CPPFLAGS = $(HOST_CPPFLAGS)\
36 -I$(top_builddir)/src \
37 -I$(top_srcdir)/src/helper \
38 -DPKGDATADIR=\"$(pkgdatadir)\" \
39 -DBINDIR=\"$(bindir)\"
42 AM_CPPFLAGS += -I$(top_srcdir)/jimtcl \
43 -I$(top_builddir)/jimtcl
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/stand-alone/GPL-3.0 \
62 tools/rlink_make_speed_table \
66 libtool: $(LIBTOOL_DEPS)
67 $(SHELL) ./config.status --recheck
69 docs: pdf html doxygen
71 Doxyfile: $(srcdir)/Doxyfile.in
72 @echo "Creating $@ from $<..."
74 echo "### @@@ -= DO NOT EDIT THIS FILE =- @@@ ###" && \
75 echo "### @@@ Make changes to Doxyfile.in @@@ ###" && \
76 sed -e 's,@srcdir\@,$(srcdir),' \
77 -e 's,@builddir\@,$(builddir),' \
78 -e 's,@doxygen_as_html\@,$(doxygen_as_html),' \
79 -e 's,@doxygen_as_pdf\@,$(doxygen_as_pdf),' $< \
82 THE_MANUAL = doxygen/latex/refman.pdf
86 doxygen Doxyfile 2>&1 | perl $(srcdir)/tools/logger.pl > doxygen.log
87 @if [ -f doxygen/latex/refman.tex ]; then \
88 echo "Creating $(THE_MANUAL)..."; \
89 $(MAKE) $(THE_MANUAL); \
91 echo "Skipping Doxygen PDF..."; \
94 $(THE_MANUAL): %.pdf: %.tex
95 -cd $$(dirname $*) && pdflatex $$(basename $*)
96 -cd $$(dirname $*) && pdflatex $$(basename $*)
99 # command to find paths of script files, relative to TCL_PATH
100 TCL_FILES = find $(srcdir)/$(TCL_PATH) -name '*.cfg' -o -name '*.tcl' -o -name '*.txt' | \
101 sed -e 's,^$(srcdir)/$(TCL_PATH),,'
104 if test -d $(srcdir)/.git -a \( ! -e $(distdir)/ChangeLog -o -w $(distdir)/ChangeLog \) ; then \
105 git --git-dir $(srcdir)/.git log | $(srcdir)/tools/git2cl/git2cl > $(distdir)/ChangeLog ; \
107 for i in $$($(TCL_FILES)); do \
108 j="$(distdir)/$(TCL_PATH)/$$i" && \
109 mkdir -p "$$(dirname $$j)" && \
110 $(INSTALL_DATA) $(srcdir)/$(TCL_PATH)/$$i $$j; \
114 for i in $$($(TCL_FILES)); do \
115 j="$(DESTDIR)$(pkgdatadir)/scripts/$$i" && \
116 mkdir -p "$$(dirname $$j)" && \
117 $(INSTALL_DATA) $(srcdir)/$(TCL_PATH)/$$i $$j; \
121 rm -rf $(DESTDIR)$(pkgdatadir)/scripts
124 rm -rf Doxyfile doxygen
125 rm -f $(srcdir)/jimtcl/configure.gnu
126 # FIXME: workaround for jimtcl 0.80 only. Remove from jimtcl 0.81
127 rm -f jimtcl/examples.api/Makefile
129 DISTCLEANFILES = doxygen.log
136 MAINTAINERCLEANFILES = \
152 include src/Makefile.am
153 include doc/Makefile.am