chiark / gitweb /
Rename main program from ypp-commodities to yarrg
[ypp-sc-tools.main.git] / yarrg / Makefile
1
2 # This is part of ypp-sc-tools, a set of third-party tools for assisting
3 # players of Yohoho Puzzle Pirates.
4 #
5 # Copyright (C) 2009 Ian Jackson <ijackson@chiark.greenend.org.uk>
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 # Yohoho and Puzzle Pirates are probably trademarks of Three Rings and
21 # are used without permission.  This program is not endorsed or
22 # sponsored by Three Rings.
23
24
25 CC= gcc
26 OPTIMISE= -O2
27 WERROR= -Werror
28 WARNINGS= -Wall -Wwrite-strings -Wpointer-arith -Wmissing-prototypes \
29           -Wstrict-prototypes -Wno-format-zero-length
30 DEBUG=-g
31
32 CFLAGS += $(WARNINGS) $(WERROR) $(OPTIMISE) $(DEBUG)
33
34 TARGETS= yarrg
35
36 all: clean-other-directory $(TARGETS)
37
38 CONVERT_OBJS= convert.o ocr.o pages.o structure.o common.o rgbimage.o resolve.o
39
40 yarrg:  $(CONVERT_OBJS) -lnetpbm -lXtst -lX11 -lpcre -lm
41         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
42
43 $(CONVERT_OBJS): ocr.h convert.h structure.h common.h
44
45 clean:
46         rm -f *.o core core.* *~ vgcore.*
47         rm -f t t.* u u.* v v.* *.tmp *.orig *.rej
48         rm -f ypp-commodities
49
50 realclean: clean
51         rm -f $(TARGETS)
52         rm -f _pages.ppm _pages.ppm.gz _upload-*.html _commodmap.tsv
53         rm -f _master-*.txt _master-*.txt.gz _local-*.txt
54         rm -f ./#pages#.ppm ./#upload-*#.html ./#commodmap#.tsv
55         rm -f ./#master-*#.txt ./#local-*#.txt raw.tsv
56
57 clean-other-directory:
58         @set -e; if test -d ../pctb && ! test -L ../pctb; then \
59                 echo '*** tidying up ../pctb; moving local data here ***'; \
60                 set -x; \
61                 find ../pctb -path '../pctb/_local-*.txt' -exec mv '{}' . \;; \
62                 $(MAKE) -C ../pctb -f ../yarrg/Makefile realclean; \
63                 rmdir ../pctb; \
64         fi