doc/en_US.ISO_8859-1/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

20 lines
473 B
Makefile

# $Id: Makefile,v 1.2 1999-08-16 22:09:04 nik Exp $
SUBDIR = articles
SUBDIR+= books
COMPAT_SYMLINK = en
#
# 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/en_US.ISO_8859-1 \
/usr/local/share/doc/fdp/${COMPAT_SYMLINK}; \
fi
.endif
.include <bsd.subdir.mk>