summaryrefslogtreecommitdiff
path: root/textproc/tclxml/files/Makefile
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
commitdb3dca6dbd32fe6ea3d51bc037e6f9cdc66c343b (patch)
tree29d590ca0bc9e66d81bc3218a0684c2daf9d4a68 /textproc/tclxml/files/Makefile
parentFix compilation problems. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_4_0'.release/4.4.0
Diffstat (limited to 'textproc/tclxml/files/Makefile')
-rw-r--r--textproc/tclxml/files/Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/textproc/tclxml/files/Makefile b/textproc/tclxml/files/Makefile
deleted file mode 100644
index 14d2ccc80f79..000000000000
--- a/textproc/tclxml/files/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# $FreeBSD$
-#
-SRCS= tclexpat.c
-
-LIB= tclexpat
-SHLIB_MAJOR?= 1
-SHLIB_MINOR?= 1
-INTERNALLIB= static library is useless
-LIBDIR= ${LOCALBASE}/lib
-
-TCL_VERSION?= 8.3
-TCL_DVER?= ${TCL_VERSION:S/.//}
-
-CFLAGS= -I${LOCALBASE}/include/tcl${TCL_VERSION} -I${LOCALBASE}/include -Wall -Werror
-LDADD+= -L${LOCALBASE}/lib -lexpat
-
-USE_STUBS!= . ${LOCALBASE}/lib/tcl${TCL_VERSION}/tclConfig.sh; echo $$TCL_SUPPORTS_STUBS
-
-.if ${USE_STUBS} == "1"
-LDADD+= -ltclstub${TCL_DVER}
-CFLAGS+=-DUSE_TCL_STUBS
-.else
-LDADD+= -ltcl${TCL_DVER}
-.endif
-
-.include <bsd.lib.mk>