diff options
Diffstat (limited to 'editors/flim/Makefile')
-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 fd1f4ef..86aa9d2 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} ; \ |