File: Makefile

package info (click to toggle)
libterralib 4.3.0%2Bdfsg.1-2
  • links: PTS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 70,928 kB
  • sloc: cpp: 254,330; ansic: 82,910; makefile: 814; sh: 80; xml: 37
file content (33 lines) | stat: -rw-r--r-- 1,005 bytes parent folder | download | duplicates (8)
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
all: proxMatrixAndSpatialStatistics

debug: proxMatrixAndSpatialStatistics_dbg

terralib:
	cd ../../terralibx/terralib; make

terralib_dbg:
	cd ../../terralibx/terralib; make debug
	
stat:
	cd ../../terralibx/stat; make

proxMatrixAndSpatialStatistics: terralib stat
	qmake -o makeProxMatrixAndSpatialStatistics proxMatrixAndSpatialStatistics.pro; make -f makeProxMatrixAndSpatialStatistics

proxMatrixAndSpatialStatistics_dbg: terralib_dbg stat
	qmake -o makeProxMatrixAndSpatialStatistics.debug proxMatrixAndSpatialStatistics.pro TE_PROJECT_TYPE=DEBUG; \
	make -f makeProxMatrixAndSpatialStatistics.debug

clean:
	if \
		test -f makeProxMatrixAndSpatialStatistics; \
	then \
		make -f makeProxMatrixAndSpatialStatistics distclean; rm -f makeProxMatrixAndSpatialStatistics; \
	fi
	
clean:
	if \
		test -f makeProxMatrixAndSpatialStatistics.debug; \
	then \
		make -f makeProxMatrixAndSpatialStatistics.debug distclean; rm -f makeProxMatrixAndSpatialStatistics.debug; \
	fi