File: Makefile.in

package info (click to toggle)
cc1111 2.9.0-7
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 38,796 kB
  • sloc: ansic: 442,688; cpp: 37,006; sh: 10,334; makefile: 5,511; asm: 5,279; yacc: 2,953; lisp: 1,524; perl: 807; awk: 493; python: 468; lex: 447
file content (127 lines) | stat: -rw-r--r-- 4,080 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
VPATH  = @srcdir@
srcdir = @srcdir@

LYX        = @LYX@
LATEX2HTML = @LATEX2HTML@
PDFLATEX   = @PDFLATEX@
MAKEINDEX  = @MAKEINDEX@
PDFOPT     = @PDFOPT@

QUIET	   = >/dev/null 2>/dev/null

include ../Makefile.common

MANUAL = sdccman
TSS = test_suite_spec
CDB = cdbfileformat

all: $(MANUAL).pdf $(MANUAL).html/index.html $(MANUAL).txt \
	$(TSS).pdf $(TSS).html/index.html $(TSS).txt \
	$(CDB).pdf $(CDB).html/index.html $(CDB).txt

install:
	$(INSTALL) -d $(DESTDIR)$(docdir)
	cp -rf $(srcdir)/*.txt $(srcdir)/z80 $(srcdir)/avr $(DESTDIR)$(docdir)
	txtfiles=`echo *.txt | grep -v '\*\.txt' || true`
	if [    $(txtfiles)               ]; then cp     $(txtfiles)    $(DESTDIR)$(docdir); fi
	if [ -f $(MANUAL).html/index.html ]; then cp -rf $(MANUAL).html $(DESTDIR)$(docdir); fi
	if [ -f $(TSS).html/index.html    ]; then cp -rf $(TSS).html    $(DESTDIR)$(docdir); fi
	if [ -f $(CDB).html/index.html    ]; then cp -rf $(CDB).html    $(DESTDIR)$(docdir); fi
	if [ -f $(MANUAL).pdf             ]; then cp -rf $(MANUAL).pdf  $(DESTDIR)$(docdir); fi
	if [ -f $(TSS).pdf                ]; then cp -rf $(TSS).pdf     $(DESTDIR)$(docdir); fi
	if [ -f $(CDB).pdf                ]; then cp -rf $(CDB).pdf     $(DESTDIR)$(docdir); fi
	rm -rf `find $(DESTDIR)$(docdir) -name .svn -type d`
	rm -f $(DESTDIR)$(docdir)/*/images.*

uninstall:
	rm -rf $(DESTDIR)$(docdir)

$(MANUAL).html/index.html: $(MANUAL).tex $(MANUAL).aux ;#$(MANUAL).ind $(MANUAL).glo
	mkdir -p $(dir $@)
	@# fixes $(LATEX2HTML) problems with two consecutive dashes for long-options: --stack-auto
	@# fixes $(LATEX2HTML) problems with \tabularnewline
	sed -e 's,-\\/-,-\\/-\\/-,g' \
	    -e 's,\\tabularnewline$$,\\\\,g' < $< > $(dir $@)$(notdir $<)
	cp $(MANUAL).aux $(dir $@)
	-cd $(dir $@); $(LATEX2HTML) -split 5 -show_section_numbers -local_icons -info "" -nosubdir $(MANUAL) $(QUIET)
	rm -f $(dir $@)WARNINGS $(dir $@)labels.pl $(dir $@)$(notdir $<) $(dir $@)$*.aux

%.html/index.html: %.tex %.aux
	mkdir -p $(dir $@)
	@# fixes $(LATEX2HTML) problems with two consecutive dashes for long-options: --stack-auto
	@# fixes $(LATEX2HTML) problems with \tabularnewline
	sed -e 's,-\\/-,-\\/-\\/-,g' \
	    -e 's,\\tabularnewline$$,\\\\,g' < $< > $(dir $@)$(notdir $<)
	cp $*.aux $(dir $@)
	-cd $(dir $@); $(LATEX2HTML) -split 0 -local_icons -info "" -nosubdir $* $(QUIET)
	rm -f $(dir $@)WARNINGS $(dir $@)labels.pl $(dir $@)$(notdir $<) $(dir $@)$*.aux

%.txt: %.lyx
	@# $(LYX) will export the file in the directory of the $(LYX) file
	@# if VPATH is used the $(LYX) file is copied first
	if [ "$(srcdir)" != "." ]; then \
	  cp -f $(srcdir)/$(notdir $<) . ; \
	fi
	$(LYX) -e text $(notdir $<);

#%.pdf: %.tex %.dvi %.ind
#	$(DVIPDF) $*
## pdflatex creates documents for acrobat reader >= 5.0	
##	which $(PDFLATEX) > /dev/null && $(PDFLATEX) $* || $(DVIPDF) $*

#%.ps:  %.pdf
#	$(DVIPS) $*

#%.dvi: %.tex
#	$(LATEX) $<
#	@# rerun to in include aux
#	$(LATEX) $<

%.tex: %.lyx
	if [ "$(srcdir)" != "." ] ; then \
	  cp -f $(srcdir)/$(notdir $<) . ; \
	fi
	$(LYX) -e latex $(notdir $<);

#%.ind: %.dvi
#	$(LATEX) $*
#	# is there an index?
#	if [ -f $*.idx ] ; then \
#	  $(MAKEINDEX) $*; \
#	  $(LATEX) $*; \
#	  $(LATEX) $*; \
#	fi
##	  -$(MAKEINDEX) -s l2hidx.ist $*; \

#%.glo: %.dvi
#	# the glossary, not implemented yet
#	# $(MAKEINDEX) -s l2hglo.ist -o $@ $<

%.pdf %.aux: %.tex
	$(PDFLATEX) $* $(QUIET)
	[ ! -e "$*.idx" ] || $(MAKEINDEX) $* $(QUIET)
	$(PDFLATEX) $* $(QUIET)
	[ ! -e "$*.idx" ] || $(MAKEINDEX) $* $(QUIET)
	$(PDFLATEX) $* $(QUIET)
	$(PDFOPT) $*.pdf $*-tmp.pdf
	rm $*.pdf
	mv $*-tmp.pdf $*.pdf

archive: all
	rm -rf sdcc-doc sdcc-doc.tar.bz2
	mkdir sdcc-doc
	rsync -rCt avr z80 *.pdf *.txt $(srcdir)/*.txt sdcc-doc

	for doc in $(MANUAL) $(TSS) $(CDB); do \
	  rsync -Rt $$doc.html/*.html $$doc.html/*.png $$doc.html/*.css sdcc-doc/; \
	done

	mkdir sdcc-doc/as
	rsync -rCt $(top_srcdir)/as/doc/* sdcc-doc/as/

	mkdir sdcc-doc/ucsim
	cd $(top_srcdir)/sim/ucsim/doc; rsync *.html *.jpg *.gif *.fig ../../../doc/sdcc-doc/ucsim/

	tar -c sdcc-doc | bzip2 -9 > sdcc-doc.tar.bz2

include $(srcdir)/clean.mk