aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: c4d2e597f407e24551189b5e7a29d4984e7c0322 (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
25
26
27
28
29
COMPONENTS := cli xul-ext

PREFIX ?= /usr
MANPREFIX ?= $(PREFIX)/share/man

all: $(COMPONENTS)

debian-package:
	git buildpackage

cli:
	make -C $@

xul-ext:
	make -C $@

install:
	make -C cli $@

installman:
	make -C cli $@

uninstall:
	make -C cli $@

clean:
	$(foreach x,$(COMPONENTS), make -C $x $@;)

.PHONY: all debian-package $(COMPONENTS) install installman uninstall clean