File: Makefile

package info (click to toggle)
libterralib 4.3.0%2Bdfsg.2-14
  • links: PTS
  • area: main
  • in suites:
  • size: 61,564 kB
  • sloc: cpp: 225,052; ansic: 31,562; makefile: 807; sh: 80; xml: 37
file content (14 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: createProximityMatrix

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

createProximityMatrix: terralib 
	qmake -o makeCreateProximityMatrix createProximityMatrix.pro; make -f makeCreateProximityMatrix

clean:
	if \
		test -f makeCreateProximityMatrix; \
	then \
		make -f makeCreateProximityMatrix distclean; rm -f makeCreateProximityMatrix; \
	fi