diff options
author | Anne Nicolas <ennael@mageia.org> | 2012-06-05 12:22:12 +0000 |
---|---|---|
committer | Anne Nicolas <ennael@mageia.org> | 2012-06-05 12:22:12 +0000 |
commit | fed828197234fb7bc25abf22bf8cd6c0af9d50f6 (patch) | |
tree | 132a3f477836a84fa97bf91e866f1e09da56fc42 | |
parent | 4a3abfcad88ca94830583638d17b826546629464 (diff) | |
download | bcd-fed828197234fb7bc25abf22bf8cd6c0af9d50f6.tar bcd-fed828197234fb7bc25abf22bf8cd6c0af9d50f6.tar.gz bcd-fed828197234fb7bc25abf22bf8cd6c0af9d50f6.tar.bz2 bcd-fed828197234fb7bc25abf22bf8cd6c0af9d50f6.tar.xz bcd-fed828197234fb7bc25abf22bf8cd6c0af9d50f6.zip |
really fix Makefile (thanks rtp)
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,8 +6,7 @@ ALL= PM=Bcd.pm Common.pm Genisoimage.pm Isolinux.pm Media.pm Stagex.pm Resign.pm POD=${name}.pod -all: man tex - pdf +all: man tex pdf clean: rm -rf *~ @@ -41,7 +40,8 @@ man: tex: cd doc && pod2latex ${NAME}.pod -pdf: cd doc && latex2pdf howto_bcd.tex +pdf: + cd doc && latex2pdf howto_bcd.tex tar: export tar cjf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION) |