File: Makefile

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

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

convertCoordinates: terralib
	qmake -o createTIN createTIN.pro; make -f createTIN

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