2002-10-02 07:35:35 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2002-10-04 15:06:44 +00:00
|
|
|
EXPAT= ${.CURDIR}/../../contrib/expat
|
2002-10-02 07:35:35 +00:00
|
|
|
|
2002-10-04 11:20:18 +00:00
|
|
|
LIB= bsdxml
|
2003-08-17 08:28:46 +00:00
|
|
|
SHLIBDIR?= /lib
|
2009-07-19 17:25:24 +00:00
|
|
|
SHLIB_MAJOR= 4
|
2002-10-04 11:20:18 +00:00
|
|
|
SRCS= xmlparse.c xmlrole.c xmltok.c
|
2008-05-08 14:01:42 +00:00
|
|
|
INCS= bsdxml.h bsdxml_external.h
|
2002-10-04 11:20:18 +00:00
|
|
|
MAN= libbsdxml.3
|
2002-10-02 07:35:35 +00:00
|
|
|
|
2002-10-04 11:20:18 +00:00
|
|
|
.PATH: ${EXPAT}/lib
|
2002-10-02 07:35:35 +00:00
|
|
|
|
2008-05-08 14:01:42 +00:00
|
|
|
CFLAGS+= -I${.CURDIR} -DHAVE_EXPAT_CONFIG_H
|
|
|
|
CLEANFILES= bsdxml.h bsdxml_external.h
|
2002-10-02 07:35:35 +00:00
|
|
|
|
2010-01-02 09:58:07 +00:00
|
|
|
WARNS?= 2
|
|
|
|
|
2002-10-04 11:20:18 +00:00
|
|
|
# OK, so it is not entirely unadultered: we ammend the COPYING
|
|
|
|
# to point people to the right place, get rid of some VMS stuff
|
2008-05-08 14:01:42 +00:00
|
|
|
# and use FreeBSD style indempotency #ifndefs. We also want to
|
|
|
|
# point it at the new bsdxml_external.h rather than the old
|
|
|
|
# expat_external.h file.
|
2002-10-04 11:20:18 +00:00
|
|
|
#
|
2002-10-04 15:06:44 +00:00
|
|
|
bsdxml.h: expat.h
|
2002-10-04 11:20:18 +00:00
|
|
|
unifdef -U__VMS < ${.ALLSRC} | \
|
|
|
|
sed -e 's/XmlParse_INCLUDED/_BSD_XML_H_/' \
|
|
|
|
-e 's/COPYING/src\/contrib\/expat\/COPYING/' \
|
2008-05-08 14:01:42 +00:00
|
|
|
-e 's/expat_external/bsdxml_external/' \
|
2002-10-04 11:20:18 +00:00
|
|
|
> ${.TARGET}
|
2002-10-02 07:35:35 +00:00
|
|
|
|
2008-05-08 14:01:42 +00:00
|
|
|
bsdxml_external.h: expat_external.h
|
2010-08-12 20:46:49 +00:00
|
|
|
cp -f ${.ALLSRC} ${.TARGET}
|
2008-05-08 14:01:42 +00:00
|
|
|
|
2002-10-02 07:35:35 +00:00
|
|
|
.include <bsd.lib.mk>
|