File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 11# contrib/rum/Makefile
22
33MODULE_big = rum
4+ EXTENSION = rum
5+ EXTVERSION = 1.2
6+ PGFILEDESC = "RUM index access method"
7+
48OBJS = src/rumsort.o src/rum_ts_utils.o src/rumtsquery.o \
59 src/rumbtree.o src/rumbulk.o src/rumdatapage.o \
610 src/rumentrypage.o src/rumget.o src/ruminsert.o \
711 src/rumscan.o src/rumutil.o src/rumvacuum.o src/rumvalidate.o \
812 src/btree_rum.o src/rum_arr_utils.o $(WIN32RES )
913
10- EXTENSION = rum
11- EXTVERSION = 1.2
1214DATA = rum--1.0.sql
1315DATA_updates = rum--1.0--1.1.sql rum--1.1--1.2.sql
1416DATA_built = rum--$(EXTVERSION ) .sql $(DATA_updates )
15- PGFILEDESC = "RUM index access method"
16- INCLUDES = src/rum.h src/rumsort.h
17+
18+ INCLUDES = rum.h rumsort.h
19+ RELATIVE_INCLUDES = $(addprefix src/, $(INCLUDES ) )
1720
1821REGRESS = rum rum_hash ruminv timestamp orderby orderby_hash altorder \
1922 altorder_hash limits \
@@ -51,4 +54,9 @@ rum--%.sql: gen_rum_sql--%.pl
5154install : installincludes
5255
5356installincludes :
54- $(INSTALL_DATA ) $(addprefix $(srcdir ) /, $(INCLUDES ) ) ' $(DESTDIR)$(includedir_server)/'
57+ $(INSTALL_DATA ) $(addprefix $(srcdir ) /, $(RELATIVE_INCLUDES ) ) ' $(DESTDIR)$(includedir_server)/'
58+
59+ uninstall : uninstallincludes
60+
61+ uninstallincludes :
62+ rm -f $(addprefix '$(DESTDIR )$(includedir_server ) /', $(INCLUDES ) )
You can’t perform that action at this time.
0 commit comments