264104f268
- xohtml: Add "-w" option to pull support files from gh_pages - Add "upload-xohtml-files" target to publish support files in gh_pages/ - add HISTORY/AUTHORS section to man pages - xohtml: Add div.units as standard CSS text - Don't treat values as format strings; they are not - add "-p" to "mkdir -p build" in setup.sh - add test case for {U:%%} (from df.c) - detect end-of-string in '%' and '' escaping - make xo_simple_field, for common simple cases - xohtml: nuke "n" in "echo" commands - rename "format" to "fmt" for consistency; same for "str" to "value" - update test cases Submitted by: phil
32 lines
586 B
Makefile
32 lines
586 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIBXOSRC= ${SRCTOP}/contrib/libxo
|
|
|
|
.PATH:
|
|
.PATH: ${LIBXOSRC}/xohtml
|
|
|
|
SCRIPTS= xohtml.sh
|
|
MAN= xohtml.1
|
|
|
|
EXTERNAL_FILES = \
|
|
external/jquery.js \
|
|
external/jquery.qtip.css \
|
|
external/jquery.qtip.js
|
|
|
|
INTERNAL_FILES = \
|
|
xohtml.js \
|
|
xohtml.css
|
|
|
|
FILES= ${INTERNAL_FILES} ${EXTERNAL_FILES}
|
|
FILESDIR= /usr/share/xohtml
|
|
FILESMODE= ${NOBINMODE}
|
|
|
|
beforeinstall: mkfilesdir
|
|
mkfilesdir:
|
|
test -d ${DESTDIR}${FILESDIR} \
|
|
|| ${INSTALL} -d -o ${FILESOWN} -g ${FILESGRP} -m 755 ${DESTDIR}${FILESDIR}
|
|
|
|
.include <bsd.prog.mk>
|