/usr/share/doc/libnet-z3950-simple2zoom-perl/examples/Makefile is in libnet-z3950-simple2zoom-perl 1.04-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # $Id: Makefile,v 1.6 2007-08-31 11:58:17 mike Exp $
STUFF = simple2zoom.rng simple2zoom.dtd simple2zoom.xsd
lint: lint-rng lint-schema lint-dtd
lint-rng: test.xml simple2zoom.rng
xmllint --relaxng simple2zoom.rng --noout test.xml
lint-dtd: test.xml simple2zoom.dtd
xmllint --dtdvalid simple2zoom.dtd --noout test.xml
lint-schema: test.xml simple2zoom.xsd
xmllint --schema simple2zoom.xsd --noout test.xml
all: $(STUFF)
%.rng: %.rnc
rm -f $@
trang $? $@
chmod 444 $@
%.dtd: %.rnc
rm -f $@
trang $< $@
chmod 444 $@
%.xsd: %.rnc
rm -f $@
trang $< $@
chmod 444 $@
clean:
rm -f $(STUFF)
|