blob: 11466662e8afbf393a0d1e35baef58bfced7ac85 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
ifeq ($(SRCDIR)x,x)
SRCDIR = $(CURDIR)/..
BUILDDIR = $(SRCDIR)
endif
SUBDIR = analyzer
VPATH=.:$(SRCDIR)/$(SUBDIR)
include $(BUILDDIR)/config.mk
# We tend to separate out the build targets so that we don't have
# any more dependencies for a given target than it really needs.
# That way, if there is a problem with a dependency, we can still
# successfully build all the stuff that doesn't depend upon it.
# This package is so big, it's useful even when some parts won't
# build.
PORTBINARIES = \
pamfind \
pamgetcolor \
pamfile \
pammosaicknit \
pamslice \
pamsumm \
pamtable \
pamtilt \
pbmminkowski \
pgmhist \
pnmhistmap \
ppmhist \
pgmminkowski \
MATHBINARIES = \
pamsharpmap \
pamsharpness \
pgmtexture \
pnmpsnr \
BINARIES = $(PORTBINARIES) $(MATHBINARIES)
SCRIPT =
OBJECTS = $(BINARIES:%=%.o)
# We don't include programs that have special library dependencies in the
# merge scheme, because we don't want those dependencies to prevent us
# from building all the other programs.
MERGEBINARIES = $(BINARIES)
MERGE_OBJECTS = $(MERGEBINARIES:%=%.o2)
HAVE_MERGE_COMPAT=YES
.PHONY: all
all: $(BINARIES)
include $(SRCDIR)/common.mk
install.bin install.merge: install.bin.local
.PHONY: install.bin.local
install.bin.local: $(PKGDIR)/bin
# Remember that $(SYMLINK) might just be a copy command.
cd $(PKGDIR)/bin ; \
$(SYMLINK) pamslice$(EXE) pgmslice$(EXE)
cd $(PKGDIR)/bin ; \
$(SYMLINK) pamfile$(EXE) pnmfile$(EXE)
mergecomptrylist:
cat /dev/null >$@
echo "TRY(\"pgmslice\", main_pamslice);" >>$@
echo "TRY(\"pnmfile\", main_pamfile);" >>$@
FORCE:
|