1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
#---*- Makefile -*-------------------------------------------------------------
#$Author: andrius $
#$Date: 2018-09-19 15:17:34 +0300 (Tr, 19 rugs. 2018) $
#$Revision: 6429 $
#$URL: svn://www.crystallography.net/cod-tools/tags/v2.3/makefiles/Makelocal-YAPP-module $
#------------------------------------------------------------------------------
#*
# Builds a Perl module from a Yapp grammar file.
#**
# The following variables should be predefined in the Makeconf file:
# ${PKG_LIB_DIR}
# Name of the local Perl library directory in which
# the assembled Perl module should be placed.
# ${PKG_PATH}
# Relative path inside the local Perl library directory
# in which the assembled Perl module should be placed.
# If not defined, the relative path is determined
# from the ${PKG_PREFIX} variable value.
# ${PKG_PREFIX}
# Prefix of the Perl package name. For example, if
# the desired package name is 'X::Y::Z', then the
# 'X::Y::' value should be passed. Please note, that
# the 'Z' portion of the package name is determined
# automatically and is equal to the name of the
# current working directory.
PKG_LIB_DIR ?= lib
PKG_PREFIX ?=
PKG_PATH ?= ${patsubst %/,%, ${subst ::,/,${PKG_PREFIX}}}
PKG_NAME := ${notdir $(shell pwd)}.pm
PM_FILE := ${PKG_NAME:%.pm=${PKG_LIB_DIR}/${PKG_PATH}/%.pm}
VFILE = .version
VERSION := $(shell grep -v "^\#" ${VFILE})
.PRECIOUS: ${PM_FILE}
.PHONY: all install cleanAll cleanAll-YAPP-module
all: ${PM_FILE}
${PKG_LIB_DIR}/${PKG_PATH}/%.pm: grammar.yp
yapp -v -m ${PKG_PREFIX}$* -o - $< | sed 's/@VERSION@/${VERSION}/' > $@
install: ${PM_FILE}
mkdir -p ${PREFIX}/share/perl5/${PKG_PATH}
cp $< ${PREFIX}/share/perl5/${PKG_PATH}
cleanAll distclean: cleanAll-YAPP-module
cleanAll-YAPP-module:
rm -f ${PM_FILE} *.output
|