summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/pdftex/tests/11-omitcharset/Makefile
blob: a8add649020b8d2140110dea8724759296699ac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# $Id: Makefile 813 2019-01-28 00:04:18Z karl $
# Public domain.

include ../Common.mak

default: test-omitcharset

test-omitcharset:
	# by default, CharSet is included.
	$(prog) test-omitcharset.tex
	grep "/CharSet" test-omitcharset.pdf >/dev/null
	#
	# force CharSet to be omitted.
	$(prog) '\pdfomitcharset=1 \input test-omitcharset.tex'
	! grep "/CharSet" test-omitcharset.pdf >/dev/null

clean:
	$(clean)