File: Makefile

package info (click to toggle)
libterralib 4.3.0%2Bdfsg.2-14
  • links: PTS
  • area: main
  • in suites: forky, sid
  • 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-- 394 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: querierWithSpatialRestBox

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

querierWithSpatialRestBox: terralib
	qmake -o makeQuerierWithSpatialRestBox querierWithSpatialRestBox.pro; make -f makeQuerierWithSpatialRestBox

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