diff options
Diffstat (limited to 'Master/support/tests/largefile/Makefile')
-rw-r--r-- | Master/support/tests/largefile/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Master/support/tests/largefile/Makefile b/Master/support/tests/largefile/Makefile new file mode 100644 index 00000000000..302b241963d --- /dev/null +++ b/Master/support/tests/largefile/Makefile @@ -0,0 +1,17 @@ +# $Id$ +# Public domain. +# +3gb.pdf: 3gb.tex poles.png + pdftex 3gb.tex + @echo "check the first numbers to see if LFS works; they must be > 2147483648" + @tail 3gb.pdf|head -2 + +poles.png: + ppmpat -poles 1250 1250 |pnmtopng > poles.png + +.PHONY: clean clobber +clean: + rm -f *.log + +clobber: clean + rm -f poles.png 3gb.pdf |