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)
12 nobase_dist_pkgdata_DATA = \
13 contrib/libdcc/dcc_stdio.c \
14 contrib/libdcc/dcc_stdio.h \
15 contrib/libdcc/example.c \
16 contrib/libdcc/README \
17 contrib/60-openocd.rules
29 DIST_SUBDIRS += jimtcl
32 # common flags used in openocd build
33 AM_CFLAGS = $(GCC_WARNINGS)
35 AM_CPPFLAGS = $(HOST_CPPFLAGS)\
37 -I$(top_builddir)/src \
38 -I$(top_srcdir)/src/helper \
39 -DPKGDATADIR=\"$(pkgdatadir)\" \
40 -DBINDIR=\"$(bindir)\"
43 AM_CPPFLAGS += -I$(top_srcdir)/jimtcl \
44 -I$(top_builddir)/jimtcl
52 $(wildcard $(srcdir)/NEWS*) \
55 tools/rlink_make_speed_table \
59 libtool: $(LIBTOOL_DEPS)
60 $(SHELL) ./config.status --recheck
62 docs: pdf html doxygen
64 Doxyfile: $(srcdir)/Doxyfile.in
65 @echo "Creating $@ from $<..."
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),' $< \
75 THE_MANUAL = doxygen/latex/refman.pdf
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); \
84 echo "Skipping Doxygen PDF..."; \
87 $(THE_MANUAL): %.pdf: %.tex
88 -cd $$(dirname $*) && pdflatex $$(basename $*)
89 -cd $$(dirname $*) && pdflatex $$(basename $*)
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),,'
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 ; \
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; \
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; \
114 rm -rf $(DESTDIR)$(pkgdatadir)/scripts
117 rm -rf Doxyfile doxygen
118 rm -f $(srcdir)/jimtcl/configure.gnu
120 DISTCLEANFILES = doxygen.log
127 MAINTAINERCLEANFILES = \
143 include src/Makefile.am
144 include doc/Makefile.am