diff options
-rw-r--r-- | lib/expat/Makefile | 6 | ||||
-rw-r--r-- | lib/expat/shlib_version | 2 | ||||
-rw-r--r-- | lib/expat/xmlwf/.cvsignore | 6 | ||||
-rw-r--r-- | lib/expat/xmlwf/Makefile | 17 |
4 files changed, 22 insertions, 9 deletions
diff --git a/lib/expat/Makefile b/lib/expat/Makefile index e68ccd2f1..f8aa3342d 100644 --- a/lib/expat/Makefile +++ b/lib/expat/Makefile @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile,v 1.5 2007/04/07 15:37:50 matthieu Exp $ -# $OpenBSD: Makefile,v 1.5 2007/04/07 15:37:50 matthieu Exp $ +# $OpenBSD: Makefile,v 1.6 2007/04/26 11:55:28 bernd Exp $ +# $OpenBSD: Makefile,v 1.6 2007/04/26 11:55:28 bernd Exp $ .include <bsd.own.mk> DIST= ${.CURDIR} @@ -10,6 +10,8 @@ CFLAGS+= -I${.CURDIR} CPPFLAGS+= -DHAVE_EXPAT_CONFIG_H DEBUG?= +SUBDIR= xmlwf + test: @echo "dist $(DIST)/lib" diff --git a/lib/expat/shlib_version b/lib/expat/shlib_version index 9c1551636..d0f0988b4 100644 --- a/lib/expat/shlib_version +++ b/lib/expat/shlib_version @@ -1,2 +1,2 @@ -major=6 +major=8 minor=0 diff --git a/lib/expat/xmlwf/.cvsignore b/lib/expat/xmlwf/.cvsignore deleted file mode 100644 index 90464b413..000000000 --- a/lib/expat/xmlwf/.cvsignore +++ /dev/null @@ -1,6 +0,0 @@ -Debug -Release -xmlwf.plg -Makefile -xmlwf -.libs diff --git a/lib/expat/xmlwf/Makefile b/lib/expat/xmlwf/Makefile new file mode 100644 index 000000000..922e92fdb --- /dev/null +++ b/lib/expat/xmlwf/Makefile @@ -0,0 +1,17 @@ +# $OpenBSD: Makefile,v 1.1 2007/04/26 11:55:28 bernd Exp $ +.include <bsd.own.mk> + +PROG= xmlwf +SRCS= xmlwf.c xmlfile.c codepage.c unixfilemap.c +CFLAGS+= -I${.CURDIR}/../ -I${.CURDIR}/../lib/ +CPPFLAGS+= -DHAVE_EXPAT_CONFIG_H +LDFLAGS+= -L${.CURDIR}/../obj -lexpat + +X11BASE?= /usr/X11R6 +MANDIR= ${X11BASE}/man/cat +VPATH= ${.CURDIR}/../doc + +obj: _xenocara_obj + +.include <bsd.prog.mk> +.include <bsd.xorg.mk> |