]> granicus.if.org Git - postgis/commitdiff
Added utils rule to set the execute bit on utilities.
authorSandro Santilli <strk@keybit.net>
Tue, 8 Mar 2005 12:11:29 +0000 (12:11 +0000)
committerSandro Santilli <strk@keybit.net>
Tue, 8 Mar 2005 12:11:29 +0000 (12:11 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@1515 b70326c6-7e19-0410-871a-916f4a2858ee

Makefile
utils/Makefile [new file with mode: 0644]

index 4c0d5837cbb173362f234acc0ff4db4d03fb04fb..9bf499003143e6f20d252e61b5ced0b61b416714 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
 #
 #-----------------------------------------------------
 
-all: liblwgeom loaderdumper
+all: liblwgeom loaderdumper utils
 
 install: all liblwgeom-install loaderdumper-install
 
@@ -49,3 +49,8 @@ loaderdumper-install:
 
 loaderdumper-uninstall:
        $(MAKE) -C loader uninstall
+
+utils:
+       $(MAKE) -C utils
+
+.PHONY: utils
diff --git a/utils/Makefile b/utils/Makefile
new file mode 100644 (file)
index 0000000..eef9a5e
--- /dev/null
@@ -0,0 +1,8 @@
+SCRIPTS = \
+       postgis_restore.pl \
+       profile_intersects.pl \
+       test_estimation.pl \
+       test_joinestimation.pl
+
+all:
+       chmod +x $(SCRIPTS)