File: Makefile

package info (click to toggle)
postgresql-unit 7.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,540 kB
  • sloc: sql: 1,768; ansic: 1,334; lex: 358; yacc: 140; perl: 100; makefile: 40; sh: 25
file content (54 lines) | stat: -rw-r--r-- 1,685 bytes parent folder | download | duplicates (2)
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
54
MODULE_big = unit
OBJS = unit.o unitparse.yy.o unitparse.tab.o
EXTENSION = unit
DATA = unit_prefixes.data unit_units.data \
	   unit--1.sql unit--1--2.sql \
	   unit--2.sql
DATA_built = unit--2--3.sql unit--3.sql \
			 unit--3--4.sql unit--4.sql \
			 unit--4--5.sql unit--5.sql \
			 unit--5--6.sql unit--6.sql \
			 unit--6--7.sql unit--7.sql
REGRESS = extension tables unit binary unicode prefix units time temperature functions language_functions round derived compare aggregate iec custom
# Jessie's and trusty's bison (3.0.2) is buggy, ship pregenerated .tab files
EXTRA_CLEAN = unitparse.yy.* powers powers.o unit-*.dump # unitparse.tab.*

# avoid add/mult contraction so '-459.67 °F' is really '0 K'
# problem visible on ppc64el Ubuntu trusty..zesty (Debian unaffected)
PG_CPPFLAGS += -ffp-contract=off

PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)

HAS_CROSSTAB = $(shell [ $(VERSION_NUM) -ge 90600 ] && echo yes)
ifeq ($(HAS_CROSSTAB),yes)
REGRESS += crosstab convert
endif

# upgrade testing, not enabled by default (needs extension actually installed)
#REGRESS += upgrade

unit.o: unit.c unit.h defined_units.h float8out_unit.h

unitparse.yy.c: unitparse.l
	flex -o $@ $<

unitparse.yy.o: unit.h defined_units.h unitparse.tab.c # actually unitparse.tab.h

unitparse.tab.c unitparse.tab.h: unitparse.y
	bison -d $<

unitparse.tab.o: unit.h defined_units.h

%.sql: %.sql.in
	sed -e "s!@MODULEDIR@!$(datadir)/$(datamoduledir)!g" $< > $@

# unit definitions from GNU units
definitions.units.patched: definitions.units definitions.units.patch
	cp $< $@
	patch $@ definitions.units.patch

# powers-of-10 template
powers: powers.c
	gcc -o $@ $^ -lm