summaryrefslogtreecommitdiff
path: root/databases/postgis/files/patch-GNUmakefile
blob: 9ded6c6e463087c3ae8bec757cf39cbf1c159566 (plain) (blame)
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
--- GNUmakefile.orig	2009-05-26 15:00:55.000000000 -0300
+++ GNUmakefile	2009-08-07 14:36:10.000000000 -0300
@@ -4,10 +4,10 @@
 #
 #-----------------------------------------------------
 
-all: postgis loaderdumper utils
+all: postgis loaderdumper utils docs
 	@echo "PostGIS was built successfully. Ready to install." 
 
-install: all postgis-install loaderdumper-install
+install: all postgis-install loaderdumper-install docs-install
 
 uninstall: postgis-uninstall loaderdumper-uninstall docs-uninstall comments-uninstall
 
@@ -80,7 +80,9 @@
 	$(MAKE) -C extras/template_gis uninstall
 
 docs: 
-	$(MAKE) -C doc 
+ifndef NOPORTDOCS
+	$(MAKE) -C doc html/postgis.html
+endif
 
 docs-clean:
 	$(MAKE) -C doc clean
@@ -95,7 +97,9 @@
 	$(MAKE) -C doc comments-uninstall
 
 docs-install:
+ifndef NOPORTDOCS
 	$(MAKE) -C doc install
+endif
 
 docs-uninstall:
 	$(MAKE) -C doc uninstall