diff options
| author | Steve Price <steve@FreeBSD.org> | 1999-11-01 04:15:01 +0000 |
|---|---|---|
| committer | Steve Price <steve@FreeBSD.org> | 1999-11-01 04:15:01 +0000 |
| commit | bb8bd53d532d735daacb00c9e550f6605aa4217a (patch) | |
| tree | cc7c477c3889c5bc519caca8d1a3802ecc36286d /databases/tcl-Mysql/files/Makefile.bsd | |
| parent | Activate the znibbles port. (diff) | |
Initial import of tcl-Mysql version 990813.
A Tcl modules for accessing MySQL databases.
PR: 13361
Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
Diffstat (limited to '')
| -rw-r--r-- | databases/tcl-Mysql/files/Makefile.bsd | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/databases/tcl-Mysql/files/Makefile.bsd b/databases/tcl-Mysql/files/Makefile.bsd new file mode 100644 index 000000000000..18240329f778 --- /dev/null +++ b/databases/tcl-Mysql/files/Makefile.bsd @@ -0,0 +1,16 @@ +LIB = TclMySQL +SHLIB_MAJOR= 1 +SHLIB_MINOR= 0 + +SRCS = sql-mysql.cc sql.cc sql-manager.cc +CFLAGS += -I${PREFIX}/include/tcl8.0/ -I${PREFIX}/include/mysql/ +LDADD += -L${PREFIX}/lib -ltcl80 +LDADD += -L${PREFIX}/lib/mysql -lmysqlclient +LDADD += -lgcc + +all: ${SHLIB_NAME} + +printname: + @echo ${SHLIB_NAME} + +.include <bsd.lib.mk> |
