mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b61e799d8b
Add BSD-style Makefiles for building & installation. Use a tarball distribution instead of the zip one which includes redundant Windows binaries. Take over the maintainership. Permitted by: dirk (previous MAINTAINER)
14 lines
230 B
Makefile
14 lines
230 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= xmlwf
|
|
SRCS= xmlwf.c \
|
|
xmlfile.c \
|
|
codepage.c \
|
|
unixfilemap.c
|
|
CFLAGS+= -I${.CURDIR}/xmltok -I${.CURDIR}/xmlparse
|
|
LDADD= -L${.CURDIR} -lexpat
|
|
NOMAN= YES
|
|
BINDIR= ${LOCALBASE}/bin
|
|
|
|
.include <bsd.prog.mk>
|