dce55200fb
the other batch.
26 lines
686 B
Makefile
26 lines
686 B
Makefile
# $Id: Makefile,v 1.2 1999-08-17 21:35:56 nik Exp $
|
|
|
|
SUBDIR = FAQ
|
|
|
|
COMPAT_SYMLINK = zh
|
|
|
|
#
|
|
# XXX Kludge -- this directory probably doesn't exist yet. Pull this out
|
|
# when the FAQ is DocBook'ed
|
|
beforeinstall:
|
|
[ -d /usr/local/share/doc/fdp/zh_TW.Big5/books/faq ] || \
|
|
mkdir -p /usr/local/share/doc/fdp/zh_TW.Big5/books/faq
|
|
|
|
#
|
|
# Put the compatability symlink in place.
|
|
#
|
|
afterinstall:
|
|
.if !defined(IGNORE_COMPAT_SYMLINK)
|
|
if [ ! -e /usr/local/share/doc/fdp/${COMPAT_SYMLINK} ]; then \
|
|
rm -rf /usr/local/share/doc/fdp/${COMPAT_SYMLINK}; \
|
|
ln -s /usr/local/share/doc/fdp/zh_TW.Big5 \
|
|
/usr/local/share/doc/fdp/${COMPAT_SYMLINK}; \
|
|
fi
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|