diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -13,7 +13,7 @@ clean: rm -rf BCD/*~ rm -rf lists/*~ rm -rf doc/*~ - rm -rf ${NAME}.1.lzma + rm -rf *.1.xz cd doc && rm -rf *.toc *.out *.log *.aux cleandist: clean @@ -28,14 +28,14 @@ install: $(ALL) man install BCD/*.pm $(PREFIX)/$(PERL_VENDORLIB)/BCD install doc/${NAME}.pod $(PREFIX)/$(PERL_VENDORLIB) install -d $(PREFIX)/usr/share/man/man1 - install doc/${NAME}.1.lzma $(PREFIX)/usr/share/man/man1/ - install doc/conf.xml.1.lzma $(PREFIX)/usr/share/man/man1/ + install doc/${NAME}.1.xz $(PREFIX)/usr/share/man/man1/ + install doc/conf.xml.1.xz $(PREFIX)/usr/share/man/man1/ man: pod2man doc/${NAME}.pod > doc/${NAME}.1 pod2man doc/conf.xml.pod > doc/conf.xml.1 - lzma -f doc/${NAME}.1 - lzma -f doc/conf.xml.1 + xz -f doc/${NAME}.1 + xz -f doc/conf.xml.1 tex: cd doc && pod2latex ${NAME}.pod |