diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 1999-10-18 16:21:12 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 1999-10-18 16:21:12 +0000 |
commit | e26d416b72dd6a2dd04779fcc419f5a51ed94d18 (patch) | |
tree | 3f93c64db2fd743e4ea016e9bb6089cb131746b2 /editors/flim | |
parent | 8be68b9a25f616bc2be14ecbc4987b8a3514b66b (diff) |
Notes
Diffstat (limited to 'editors/flim')
-rw-r--r-- | editors/flim/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/editors/flim/Makefile b/editors/flim/Makefile index fd1f4ef4f507..86aa9d242739 100644 --- a/editors/flim/Makefile +++ b/editors/flim/Makefile @@ -103,6 +103,11 @@ post-build: @${MAKE} info-build .endif +pre-install: +.if defined(EMACS_PACKAGESDIR) && defined(EMACS_PACKAGES_SUBDIRS) + @${MAKE} mkdir-site-packages +.endif + post-install: # install package-cookie @${MKDIR} -p ${PREFIX}/share/flim @@ -153,6 +158,11 @@ info-build-by-emacs: done) .endif +mkdir-site-packages: + @(for i in ${EMACS_PACKAGES_SUBDIRS} ; do \ + ${MKDIR} ${PREFIX}/${EMACS_PACKAGESDIR}/$${i} ; \ + done) + doc-install: @${MKDIR} ${PREFIX}/${FLIMDOCDIR} @(cd ${WRKSRC} ; \ |