File: Makefile.in

package info (click to toggle)
ocrad 0.22~rc1-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 708 kB
  • sloc: cpp: 8,435; sh: 261; makefile: 180
file content (150 lines) | stat: -rw-r--r-- 5,239 bytes parent folder | download
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150

DISTNAME = $(pkgname)-$(pkgversion)
AR = ar
INSTALL = install
INSTALL_PROGRAM = $(INSTALL) -p -m 755
INSTALL_DATA = $(INSTALL) -p -m 644
INSTALL_DIR = $(INSTALL) -d -m 755
SHELL = /bin/sh

lib_objs = ocradlib.o
ocr_objs = common.o mask.o rational.o rectangle.o track.o \
           ucs.o page_image.o page_image_io.o \
           bitmap.o blob.o profile.o feats.o feats_test0.o feats_test1.o \
           character.o character_r11.o character_r12.o character_r13.o \
           textline.o textline_r2.o textblock.o textpage.o
objs     = arg_parser.o main.o


.PHONY : all install install-info install-man install-strip \
         uninstall uninstall-info uninstall-man \
         doc info man check dist clean distclean

all : $(progname) lib$(libname).a

lib$(libname).a: $(ocr_objs) $(lib_objs)
	$(AR) -rcs $@ $(ocr_objs) $(lib_objs)

$(progname) : $(ocr_objs) $(objs)
	$(CXX) $(LDFLAGS) -o $@ $(ocr_objs) $(objs)

$(progname)_profiled : $(ocr_objs) $(objs)
	$(CXX) $(LDFLAGS) -pg -o $@ $(ocr_objs) $(objs)

ocrcheck : ocrcheck.o lib$(libname).a
	$(CXX) $(LDFLAGS) -o $@ ocrcheck.o lib$(libname).a

ocrcheck.o : ocrcheck.cc
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ $<

main.o : main.cc
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ $<

%.o : %.cc
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o $@ $<

$(lib_objs)     : Makefile ocradlib.h
$(ocr_objs)     : Makefile bitmap.h blob.h common.h rational.h rectangle.h ucs.h
$(objs)         : Makefile arg_parser.h
character.o     : character.h
character_r11.o : character.h profile.h feats.h
character_r12.o : character.h profile.h feats.h
character_r13.o : character.h profile.h feats.h
feats.o         : profile.h feats.h
feats_test0.o   : profile.h feats.h
feats_test1.o   : profile.h feats.h
main.o          : common.h rational.h rectangle.h page_image.h textpage.h
mask.o          : mask.h
ocradlib.o      : common.h rectangle.h ucs.h track.h bitmap.h blob.h character.h page_image.h textline.h textblock.h textpage.h
page_image.o    : ocradlib.h mask.h track.h page_image.h
page_image_io.o : page_image.h
profile.o       : profile.h
textblock.o     : track.h character.h page_image.h textline.h textblock.h
textline.o      : track.h character.h page_image.h textline.h
textline_r2.o   : track.h character.h textline.h
textpage.o      : mask.h track.h character.h page_image.h textline.h textblock.h textpage.h
track.o         : track.h
ocrcheck.o      : Makefile ocradlib.h


doc : info man

info : $(VPATH)/doc/$(pkgname).info

$(VPATH)/doc/$(pkgname).info : $(VPATH)/doc/$(pkgname).texinfo
	cd $(VPATH)/doc && makeinfo $(pkgname).texinfo

man : $(VPATH)/doc/$(progname).1

$(VPATH)/doc/$(progname).1 : $(progname)
	help2man -n 'command line text recognition tool' \
	  -o $@ ./$(progname)

Makefile : $(VPATH)/configure $(VPATH)/Makefile.in
	./config.status

check : all ocrcheck
	@$(VPATH)/testsuite/check.sh $(VPATH)/testsuite $(pkgversion)

install : all install-info install-man
	if [ ! -d "$(DESTDIR)$(bindir)" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(bindir)" ; fi
	if [ ! -d "$(DESTDIR)$(includedir)" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(includedir)" ; fi
	if [ ! -d "$(DESTDIR)$(libdir)" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(libdir)" ; fi
	$(INSTALL_PROGRAM) ./$(progname) "$(DESTDIR)$(bindir)/$(progname)"
	$(INSTALL_DATA) $(VPATH)/$(libname)lib.h "$(DESTDIR)$(includedir)/$(libname)lib.h"
	$(INSTALL_DATA) ./lib$(libname).a "$(DESTDIR)$(libdir)/lib$(libname).a"

install-info :
	if [ ! -d "$(DESTDIR)$(infodir)" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(infodir)" ; fi
	$(INSTALL_DATA) $(VPATH)/doc/$(pkgname).info "$(DESTDIR)$(infodir)/$(pkgname).info"
	-install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$(pkgname).info"

install-man :
	if [ ! -d "$(DESTDIR)$(mandir)/man1" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" ; fi
	$(INSTALL_DATA) $(VPATH)/doc/$(progname).1 "$(DESTDIR)$(mandir)/man1/$(progname).1"

install-strip : all
	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install

uninstall : uninstall-info uninstall-man
	-rm -f "$(DESTDIR)$(bindir)/$(progname)"
	-rm -f "$(DESTDIR)$(includedir)/$(libname)lib.h"
	-rm -f "$(DESTDIR)$(libdir)/lib$(libname).a"

uninstall-info :
	-install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$(pkgname).info"
	-rm -f "$(DESTDIR)$(infodir)/$(pkgname).info"

uninstall-man :
	-rm -f "$(DESTDIR)$(mandir)/man1/$(progname).1"

dist : doc
	ln -sf $(VPATH) $(DISTNAME)
	tar -cvf $(DISTNAME).tar \
	  $(DISTNAME)/AUTHORS \
	  $(DISTNAME)/COPYING \
	  $(DISTNAME)/ChangeLog \
	  $(DISTNAME)/INSTALL \
	  $(DISTNAME)/Makefile.in \
	  $(DISTNAME)/NEWS \
	  $(DISTNAME)/README \
	  $(DISTNAME)/TODO \
	  $(DISTNAME)/configure \
	  $(DISTNAME)/doc/$(progname).1 \
	  $(DISTNAME)/doc/$(pkgname).info \
	  $(DISTNAME)/doc/$(pkgname).texinfo \
	  $(DISTNAME)/testsuite/check.sh \
	  $(DISTNAME)/testsuite/test.pbm \
	  $(DISTNAME)/testsuite/test.txt \
	  $(DISTNAME)/ocrad.png \
	  $(DISTNAME)/*.h \
	  $(DISTNAME)/*.cc
	rm -f $(DISTNAME)
	lzip -v -9 $(DISTNAME).tar

clean :
	-rm -f $(progname) $(progname)_profiled $(objs) $(ocr_objs)
	-rm -f ocrcheck ocrcheck.o $(lib_objs) *.a

distclean : clean
	-rm -f Makefile config.status *.tar *.tar.lz