mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
216b5a285f
PR: 192062 Exp-run by: antoine Approved by: portmgr (antoine)
21 lines
385 B
Makefile
21 lines
385 B
Makefile
# $FreeBSD$
|
|
|
|
.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${PREFIX}/lib -ljpeg -lexif -lm
|
|
|
|
CFLAGS+= -I${PREFIX}/include -I${.CURDIR}/../../jpeg/80 \
|
|
-I${.CURDIR}/../.. -DHAVE_NEW_EXIF
|
|
|
|
MAN=
|
|
|
|
.include <bsd.prog.mk>
|