blob: 9e5f2a64295c2a6beea20b228e9f7f77db3f7aa0 (
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
|
ifeq ($(SRCDIR)x,x)
SRCDIR = $(CURDIR)/../..
BUILDDIR = $(SRCDIR)
endif
SUBDIR = converter/ppm
VPATH=.:$(SRCDIR)/$(SUBDIR)
include $(BUILDDIR)/config.mk
SUBDIRS = hpcdtoppm ppmtompeg
PORTBINARIES = 411toppm eyuvtoppm gouldtoppm ilbmtoppm imgtoppm \
leaftoppm mtvtoppm neotoppm \
pcxtoppm pc1toppm pi1toppm picttoppm pjtoppm \
ppmtoacad ppmtoapplevol ppmtoarbtxt ppmtoascii \
ppmtobmp ppmtoeyuv ppmtogif ppmtoicr ppmtoilbm \
ppmtoleaf ppmtolj ppmtomitsu ppmtoneo \
ppmtopcx ppmtopi1 ppmtopict ppmtopj \
ppmtopjxl ppmtoppm ppmtopuzz ppmtorgb3 ppmtosixel ppmtoterm \
ppmtowinicon ppmtoxpm ppmtoyuv ppmtoyuvsplit \
qrttoppm rawtoppm rgb3toppm spctoppm \
sputoppm tgatoppm winicontoppm ximtoppm xpmtoppm xvminitoppm \
yuvsplittoppm yuvtoppm
MATHBINARIES = sldtoppm
# We don't build vidtoppm by default, because it requires special libraries
# and there is no known requirement for vidtoppm.
MERGEBINARIES = $(PORTBINARIES) $(MATHBINARIES)
NOMERGEBINARIES =
BINARIES = $(MERGEBINARIES) $(NOMERGEBINARIES)
DATAFILES = pcxstd.ppm
OBJECTS = $(BINARIES:%=%.o)
MERGE_OBJECTS = $(BINARIES:%=%.o2)
.PHONY: all
all: $(BINARIES) $(SUBDIRS:%=%/all)
include $(SRCDIR)/common.mk
ppmtobmp.o ppmtobmp.o2: bmp.h
tgatoppm.o tgatoppm.o2: tga.h
|