90 lines
3.0 KiB
Makefile
90 lines
3.0 KiB
Makefile
#
|
|
# 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
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
CLEANFILES = \
|
|
programmers.texi \
|
|
parts.texi \
|
|
programmer_types.texi \
|
|
version.texi \
|
|
stamp-vti
|
|
|
|
info_TEXINFOS = avrdude.texi
|
|
|
|
all-local: info html ps pdf
|
|
|
|
html: avrdude-html/avrdude.html
|
|
|
|
avrdude-html/avrdude.html: $(srcdir)/$(info_TEXINFOS) $(srcdir)/programmers.texi $(srcdir)/parts.texi $(srcdir)/programmer_types.texi
|
|
texi2html -split_node $(srcdir)/$(info_TEXINFOS)
|
|
if [ -e ./avrdude.html -o -e ./avrdude_1.html ]; then \
|
|
mkdir -p avrdude-html ; \
|
|
mv -f *.html avrdude-html ; \
|
|
else \
|
|
mv -f avrdude avrdude-html; \
|
|
fi;
|
|
|
|
avrdude.info: programmers.texi parts.texi programmer_types.texi
|
|
avrdude.dvi: programmers.texi parts.texi programmer_types.texi
|
|
avrdude.pdf: programmers.texi parts.texi programmer_types.texi
|
|
|
|
# if it does not exist make this first
|
|
../avrdude$(EXEEXT):
|
|
$(MAKE) -C .. avrdude$(EXEEXT)
|
|
|
|
programmers.texi: ../avrdude$(EXEEXT) ../avrdude.conf Makefile
|
|
../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
|
|
|
|
programmer_types.texi: ../avrdude$(EXEEXT) ../avrdude.conf Makefile
|
|
../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
|
|
|
|
parts.texi: ../avrdude$(EXEEXT) ../avrdude.conf parts_comments.txt Makefile
|
|
../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
|
|
|
|
clean-local:
|
|
rm -rf avrdude-html *.info
|
|
|
|
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)
|