mirror of
https://git.freebsd.org/ports.git
synced 2025-05-19 10:33:12 -04:00
compiling without it :( Add the explicit -D to CFLAGS. Good noone tried to use the lcms part of the library... Also, add library dependencies to LDADD -- -ljpeg -lz -llcms.
17 lines
345 B
Text
17 lines
345 B
Text
LIB= mng
|
|
LDADD= -lm -L${LIBDIR} -lz -llcms -ljpeg
|
|
|
|
NOPROFILE= yes
|
|
SHLIB_MAJOR?= 1
|
|
SHLIB_MINOR?= 0
|
|
|
|
LOBJS!= make -f ${.CURDIR}/Makefile.in -V libmng_la_OBJECTS
|
|
SRCS= ${LOBJS:.lo=.c}
|
|
|
|
CFLAGS+= -I${INCDIR} -DMNG_FULL_CMS
|
|
|
|
INCS= libmng.h libmng_conf.h libmng_types.h
|
|
INCDIR= ${LOCALBASE}/include
|
|
LIBDIR= ${LOCALBASE}/lib
|
|
|
|
.include <bsd.lib.mk>
|