blob: bbe919b75ce20c745fe07462fc52e9563988f194 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
.PATH: ${.CURDIR}/../..
PROG= exiftran
SRCS= exiftran.c genthumbnail.c jpegtools.c filter.c op.c readers.c
.PATH: ${.CURDIR}/../../jpeg/80
SRCS+= transupp.c
.PATH: ${.CURDIR}/../../rd
SRCS+= read-jpeg.c
LDADD= -L${LOCALBASE}/lib -ljpeg -lexif -lm -lpixman-1
CFLAGS+= -I${LOCALBASE}/include \
-I${LOCALBASE}/include/pixman-1 \
-I${.CURDIR}/../../jpeg/80 \
-I${.CURDIR}/../.. \
-DHAVE_NEW_EXIF
MAN=
.include <bsd.prog.mk>
|