mirror of
https://github.com/cc65/cc65.git
synced 2024-12-31 11:32:00 +00:00
Ignore some more intermediate files
git-svn-id: svn://svn.cc65.org/cc65/trunk@711 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
1fbf554c63
commit
00074cedbc
@ -1,7 +1,9 @@
|
|||||||
|
.depend
|
||||||
*.man
|
*.man
|
||||||
*.dvi
|
*.dvi
|
||||||
*.html
|
*.html
|
||||||
*.info
|
*.info
|
||||||
|
*.tex
|
||||||
ar65.txt
|
ar65.txt
|
||||||
ca65.txt
|
ca65.txt
|
||||||
cc65.txt
|
cc65.txt
|
||||||
|
@ -22,6 +22,7 @@ TXT = $(SGML:.sgml=.txt)
|
|||||||
HTML = $(SGML:.sgml=.html)
|
HTML = $(SGML:.sgml=.html)
|
||||||
INFO = $(SGML:.sgml=.info)
|
INFO = $(SGML:.sgml=.info)
|
||||||
DVI = $(SGML:.sgml=.dvi)
|
DVI = $(SGML:.sgml=.dvi)
|
||||||
|
TEX = $(SGML:.sgml=.tex)
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Rules to make targets
|
# Rules to make targets
|
||||||
@ -38,6 +39,9 @@ DVI = $(SGML:.sgml=.dvi)
|
|||||||
%.dvi: %.sgml
|
%.dvi: %.sgml
|
||||||
sgml2latex $<
|
sgml2latex $<
|
||||||
|
|
||||||
|
%.tex: %.sgml
|
||||||
|
sgml2latex --output=tex $<
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Targets
|
# Targets
|
||||||
|
|
||||||
@ -56,6 +60,9 @@ info: $(INFO)
|
|||||||
.PHONY: dvi
|
.PHONY: dvi
|
||||||
dvi: $(DVI)
|
dvi: $(DVI)
|
||||||
|
|
||||||
|
.PHONY: tex
|
||||||
|
tex: $(TEX)
|
||||||
|
|
||||||
# The index.html target is special, since it does not get splitted
|
# The index.html target is special, since it does not get splitted
|
||||||
index.html: index.sgml
|
index.html: index.sgml
|
||||||
sgml2html --split=0 $<
|
sgml2html --split=0 $<
|
||||||
@ -64,7 +71,7 @@ clean:
|
|||||||
rm -f *~
|
rm -f *~
|
||||||
|
|
||||||
zap: clean
|
zap: clean
|
||||||
rm -f $(TXT) $(HTML) $(INFO) $(DVI) *.html *.info-* *.man
|
rm -f $(TXT) $(HTML) $(INFO) $(DVI) $(TEX) *.html *.info-* *.man
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Make the dependencies
|
# Make the dependencies
|
||||||
|
Loading…
Reference in New Issue
Block a user