File: Makefile

package info (click to toggle)
montage 6.0%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 23,120 kB
  • sloc: ansic: 205,662; python: 1,621; makefile: 1,547; javascript: 1,338; sh: 157; xml: 48
file content (23 lines) | stat: -rw-r--r-- 784 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

CPPFLAGS += -I/usr/include/wcstools -I/usr/include/freetype2

all:
	mkdir -p bin
	mkdir -p lib/include
	test -d lib/src && (cd lib/src && make)
	test -d Montage && (cd Montage && ./Configure.sh && make && make install)
	test -d util && (cd util && make)
	test -d grid && (cd grid && make)
	test -d MontageLib && (cd MontageLib && make)
	test -d ancillary && (cd ancillary && make && make install)

clean:
	mkdir -p bin
	mkdir -p lib/include
	rm -rf bin/*
	test -d lib/src && (cd lib/src && make clean) || true
	test -d Montage && (cd Montage && make clean) || true
	test -d util && (cd util && make clean) || true
	test -d grid && (cd grid && make clean) || true
	test -d MontageLib && (cd MontageLib && make clean) || true
	test -d ancillary && (cd ancillary && make clean) || true