2003-03-03 01:09:52 +00:00
|
|
|
#
|
|
|
|
# avrdude - A Downloader/Uploader for AVR device programmers
|
|
|
|
# Copyright (C) 2003 Theodore A. Roth <troth@openavr.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2012-11-20 14:03:50 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-03-03 01:09:52 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
2012-09-05 20:52:40 +00:00
|
|
|
GENERATED_TEXINFOS = \
|
2012-09-06 15:33:09 +00:00
|
|
|
$(builddir)/programmers.texi \
|
|
|
|
$(builddir)/parts.texi \
|
|
|
|
$(builddir)/programmer_types.texi \
|
|
|
|
$(builddir)/version.texi
|
2012-09-05 20:52:40 +00:00
|
|
|
|
2003-03-12 02:09:57 +00:00
|
|
|
CLEANFILES = \
|
2012-09-05 20:52:40 +00:00
|
|
|
$(GENERATED_TEXINFOS) \
|
2012-09-06 15:33:09 +00:00
|
|
|
$(builddir)/stamp-vti
|
2003-03-12 02:09:57 +00:00
|
|
|
|
2003-03-03 01:09:52 +00:00
|
|
|
info_TEXINFOS = avrdude.texi
|
|
|
|
|
2012-09-06 15:33:09 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
parts_comments.txt
|
|
|
|
|
2003-03-03 01:09:52 +00:00
|
|
|
all-local: info html ps pdf
|
|
|
|
|
2005-09-17 20:04:31 +00:00
|
|
|
html: avrdude-html/avrdude.html
|
|
|
|
|
2012-09-05 20:52:40 +00:00
|
|
|
avrdude-html/avrdude.html: $(srcdir)/$(info_TEXINFOS) $(GENERATED_TEXINFOS)
|
2003-03-03 01:09:52 +00:00
|
|
|
texi2html -split_node $(srcdir)/$(info_TEXINFOS)
|
2005-09-22 17:51:59 +00:00
|
|
|
if [ -e ./avrdude.html -o -e ./avrdude_1.html ]; then \
|
|
|
|
mkdir -p avrdude-html ; \
|
2005-09-17 20:04:31 +00:00
|
|
|
mv -f *.html avrdude-html ; \
|
2005-09-16 20:18:37 +00:00
|
|
|
else \
|
2005-09-17 20:04:31 +00:00
|
|
|
mv -f avrdude avrdude-html; \
|
2005-09-16 20:18:37 +00:00
|
|
|
fi;
|
2003-03-03 01:09:52 +00:00
|
|
|
|
2012-09-06 15:33:09 +00:00
|
|
|
$(builddir)/avrdude.info: $(GENERATED_TEXINFOS)
|
|
|
|
$(builddir)/avrdude.dvi: $(GENERATED_TEXINFOS)
|
|
|
|
$(builddir)/avrdude.pdf: $(GENERATED_TEXINFOS)
|
2011-12-29 12:53:20 +00:00
|
|
|
|
2011-12-29 13:24:02 +00:00
|
|
|
# if it does not exist make this first
|
|
|
|
../avrdude$(EXEEXT):
|
|
|
|
$(MAKE) -C .. avrdude$(EXEEXT)
|
|
|
|
|
2012-09-06 15:33:09 +00:00
|
|
|
$(builddir)/programmers.texi: ../avrdude$(EXEEXT) ../avrdude.conf Makefile
|
2012-02-03 20:23:32 +00:00
|
|
|
../avrdude$(EXEEXT) -C ../avrdude.conf -c \? 2>&1 \
|
|
|
|
| $(AWK) '$$2 ~ /^=$$/ {printf("@item @code{%s} @tab %s\n",$$1,gensub("[^=]+=[ \t]*","",1))}' \
|
|
|
|
| sed "s# *,\? *<\?\(http://[^ \t>]*\)>\?#,@*\n@url{\1}#g" \
|
|
|
|
>programmers.texi
|
|
|
|
|
2012-09-06 15:33:09 +00:00
|
|
|
$(builddir)/programmer_types.texi: ../avrdude$(EXEEXT) ../avrdude.conf Makefile
|
2012-01-31 17:03:43 +00:00
|
|
|
../avrdude$(EXEEXT) -C ../avrdude.conf -c \?type 2>&1 \
|
|
|
|
| $(AWK) '$$2 ~ /^=$$/ {printf("@item @code{%s} @tab %s\n",$$1,gensub("[^=]+=[ \t]*","",1))}' \
|
|
|
|
| sed "s#<\?\(http://[^ \t,>]*\)>\?#@url{\1}#g" \
|
|
|
|
>programmer_types.texi
|
|
|
|
|
2012-09-06 15:33:09 +00:00
|
|
|
$(builddir)/parts.texi: ../avrdude$(EXEEXT) ../avrdude.conf parts_comments.txt Makefile
|
2011-12-29 12:53:20 +00:00
|
|
|
../avrdude$(EXEEXT) -C ../avrdude.conf -p \? 2>&1 \
|
|
|
|
| $(AWK) '$$2 ~ /^=$$/ {printf("@item @code{%s} @tab %s\n",$$1,$$3)}' \
|
|
|
|
| sed -e "`sed 's:\([^ \t]*\)[ \t]*\(.*\):s/\1$$/\1 \2/g:g' <parts_comments.txt`" \
|
|
|
|
>parts.texi
|
|
|
|
|
2003-03-03 01:09:52 +00:00
|
|
|
clean-local:
|
|
|
|
rm -rf avrdude-html *.info
|
2003-03-06 07:48:08 +00:00
|
|
|
|
|
|
|
install-data-local: install-docs
|
|
|
|
|
|
|
|
install-docs: html ps pdf
|
|
|
|
$(mkinstalldirs) $(DOC_INST_DIR)
|
|
|
|
$(INSTALL_DATA) avrdude.ps $(DOC_INST_DIR)/avrdude.ps
|
|
|
|
$(INSTALL_DATA) avrdude.pdf $(DOC_INST_DIR)/avrdude.pdf
|
|
|
|
$(mkinstalldirs) $(DOC_INST_DIR)/avrdude-html
|
|
|
|
@list=`echo avrdude-html/*.html`; \
|
|
|
|
for file in $$list; \
|
|
|
|
do \
|
|
|
|
$(INSTALL_DATA) $$file $(DOC_INST_DIR)/$$file; \
|
|
|
|
done
|
|
|
|
|
|
|
|
uninstall-local:
|
|
|
|
rm -rf $(DOC_INST_DIR)
|