blob: 0d3ad32ec52bdb3557aa8a48ec15a298ebb8d3b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- utils/Makefile Tue Mar 8 09:11:29 2005
+++ utils/Makefile Mon Mar 28 09:45:41 2005
@@ -1,3 +1,6 @@
+include ../Makefile.config
+include $(top_srcdir)/src/Makefile.shlib
+
SCRIPTS = \
postgis_restore.pl \
profile_intersects.pl \
@@ -6,3 +9,11 @@
all:
chmod +x $(SCRIPTS)
+
+install:
+ $(mkinstalldirs) $(DATADIR)/utils
+ $(INSTALL_DATA) README $(DATADIR)/utils/README
+ $(INSTALL_DATA) postgis_restore.pl $(DATADIR)/utils/postgis_restore.pl
+ $(INSTALL_DATA) profile_intersects.pl $(DATADIR)/utils/profile_intersects.pl
+ $(INSTALL_DATA) test_estimation.pl $(DATADIR)/utils/test_estimation.pl
+ $(INSTALL_DATA) test_joinestimation.pl $(DATADIR)/utils/test_joinestimation.pl
|