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 (14 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: querierWithSpatialRestGeometry

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

querierWithSpatialRestGeometry: terralib
	qmake -o makeQuerierWithSpatialRestGeometry querierWithSpatialRestGeometry.pro; make -f makeQuerierWithSpatialRestGeometry

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