doc/ja_JP.eucJP/Makefile
Nik Clayton 7fc8947ce8 The new Makefile framework. Does the right thing (pretty much) except
in the case of */FAQ/Makefile, because the FAQs are all in the wrong
place.  Things still install properly, but some of the directory paths
are hardcoded.  This will be going away ASAP.
1999-08-16 22:09:20 +00:00

26 lines
650 B
Makefile

# $Id: Makefile,v 1.6 1999-08-16 22:09:11 nik Exp $
SUBDIR = books
SUBDIR+= man
SUBDIR+= FAQ
COMPAT_SYMLINK = ja_JP.eucJP
# XXX Kludge -- pull this out when the FAQ is in DocBook
beforeinstall:
[ -d /usr/local/share/doc/fdp/ja/books/faq ] || \
mkdir -p /usr/local/share/doc/fdp/ja/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/ja \
/usr/local/share/doc/fdp/${COMPAT_SYMLINK}; \
fi
.endif
.include <bsd.subdir.mk>