summaryrefslogtreecommitdiff
path: root/Makefile
blob: aa8b511eeaac4d966216915f1c331847005ede82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.PHONY: all gf install doc clean sdist lib

all: gf lib

dist/setup-config:
	runghc Setup.lhs configure

gf: dist/setup-config
	runghc Setup.lhs build

install:
	runghc Setup.lhs install

doc:
	runghc Setup.lhs haddock

clean:
	runghc Setup.lhs clean

sdist:
	runghc Setup.lhs sdist

lib:
	$(MAKE) -C lib/resource clean all