mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-29 21:39:24 +00:00
ea94f608b4
PR: 19874 Submitted by: maintainer
17 lines
316 B
Makefile
17 lines
316 B
Makefile
LIB = mysqltcl
|
|
SHLIB_MAJOR= 1
|
|
SHLIB_MINOR= 0
|
|
|
|
SRCS = mysqltcl.c
|
|
CFLAGS += -I${PREFIX}/include/${TCL_VERSION}/
|
|
CFLAGS += -I${PREFIX}/include/mysql/ -Wall
|
|
LDADD += -L${PREFIX}/lib -l${TCL_NODOT}
|
|
LDADD += -L${PREFIX}/lib/mysql -lmysqlclient
|
|
|
|
all: ${SHLIB_NAME}
|
|
|
|
printname:
|
|
@echo ${SHLIB_NAME}
|
|
|
|
.include <bsd.lib.mk>
|