blob: 088472f637263a0753d1a5ac5c4380363b7cd651 (
plain) (
blame)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# for pipefail
SHELL=/bin/bash
.SECONDARY:
.DELETE_ON_ERROR:
XSLTPROC = xsltproc
all: about-server check
about-server:
@$(XSLTPROC) -o help/about-server.txt ../tools/contrib_xsl/about-server.xsl ../tools/contrib_xsl/contributors.xml
@echo "The file about-server.txt was created successfully."
wiki:
@$(XSLTPROC) ../tools/contrib_xsl/wiki.xsl ../tools/contrib_xsl/contributors.xml | less
@echo "You can now place this output in: http://wiki.evolonline.org/contributors"
check: check-xml check-png testxml
PNGS = $(shell find . -type f -name "*.png")
check-png: $(patsubst %.png,out/%.png.ok,${PNGS})
find . -name '*.png.ok' -delete
find . -name '*.png.out' -delete
find ./out/ -type d -delete
out/%.png.ok: out/%.png.out
grep '32-bit RGB+alpha, non-interlaced, ' $< > $@
out/%.png.out: %.png
mkdir -p ${@D}
set -e -o pipefail; \
pngcheck $< > $@
check-xml:
cd ../tools/testxml/ ; ./xsdcheck.sh ; cat errors.txt
testxml:
cd ../tools/testxml/ ; ./testxml.py all
updates:
cd ../tools/update/ ; ./createnew.sh
music:
cd ../tools/update/ ; ./create_music.sh
license:
cd ../tools/licensecheck/ ; ./clientdata.sh
icc:
cd ../tools/imagescheck/ ; ./icccheck.sh
|