File: Makelocal-YAPP-module

package info (click to toggle)
cod-tools 3.1.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 149,700 kB
  • sloc: perl: 56,946; sh: 32,158; ansic: 6,385; xml: 1,982; yacc: 1,117; makefile: 728; python: 166
file content (53 lines) | stat: -rw-r--r-- 2,035 bytes parent folder | download
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: 2020-02-20 17:40:40 +0200 (Thu, 20 Feb 2020) $
#$Revision: 7747 $
#$URL: svn+ssh://www.crystallography.net/home/coder/svn-repositories/cod-tools/tags/v3.1.0/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 --parents ${PREFIX}/lib/perl5/${PKG_PATH}
	install --mode 644 $< ${PREFIX}/lib/perl5/${PKG_PATH}

cleanAll distclean: cleanAll-YAPP-module

cleanAll-YAPP-module:
	rm -f ${PM_FILE} *.output