blob: c090094ed08d567e2184bb999fec9221d5c3663b (
plain)
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
55
56
57
58
59
60
61
62
63
64
65
|
#-------------------------------------------------------------------------
#
# Makefile for backend/catalog
#
# Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# src/backend/catalog/Makefile
#
#-------------------------------------------------------------------------
subdir = src/backend/catalog
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
OBJS = \
aclchk.o \
catalog.o \
dependency.o \
heap.o \
index.o \
indexing.o \
namespace.o \
objectaccess.o \
objectaddress.o \
partition.o \
pg_aggregate.o \
pg_attrdef.o \
pg_cast.o \
pg_class.o \
pg_collation.o \
pg_constraint.o \
pg_conversion.o \
pg_db_role_setting.o \
pg_depend.o \
pg_enum.o \
pg_inherits.o \
pg_largeobject.o \
pg_namespace.o \
pg_operator.o \
pg_parameter_acl.o \
pg_proc.o \
pg_publication.o \
pg_range.o \
pg_shdepend.o \
pg_subscription.o \
pg_type.o \
storage.o \
toasting.o
include $(top_srcdir)/src/backend/common.mk
.PHONY: install-data
install-data: installdirs
$(INSTALL_DATA) $(srcdir)/system_functions.sql '$(DESTDIR)$(datadir)/system_functions.sql'
$(INSTALL_DATA) $(srcdir)/system_views.sql '$(DESTDIR)$(datadir)/system_views.sql'
$(INSTALL_DATA) $(srcdir)/information_schema.sql '$(DESTDIR)$(datadir)/information_schema.sql'
$(INSTALL_DATA) $(srcdir)/sql_features.txt '$(DESTDIR)$(datadir)/sql_features.txt'
installdirs:
$(MKDIR_P) '$(DESTDIR)$(datadir)'
.PHONY: uninstall-data
uninstall-data:
rm -f $(addprefix '$(DESTDIR)$(datadir)'/, system_functions.sql system_views.sql information_schema.sql sql_features.txt)
|