aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ece416f9d6656f094ad451ba66aa01be5a4d8967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
static: LIBTYPE = static
shared: LIBTYPE = shared

.PHONY: examples clean static shared

all: static examples

static shared:
	@$(MAKE) -C src LIBRARY=$(LIBTYPE)

examples:
	@$(MAKE) -C examples

clean:
	@$(MAKE) -C src clean
	@$(MAKE) -C examples clean