blob: cccdff3bcffa5d5a5d8012ef3c344bb0c3b1ba07 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
 | # Don't delete if make is interrupted
.PRECIOUS: %.info %.html
all: emms.info
%.info: %.texinfo
	makeinfo --no-split $<
%.html: %.texinfo
	makeinfo --html --no-split $<
 |