summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8f811b7b7736883311785af0b1eda7439c92a30f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Top level makefile, the real shit is at src/Makefile

TARGETS=32bit noopt test

all:
	cd src && $(MAKE) $@

install: dummy
	cd src && $(MAKE) $@

$(TARGETS) clean:
	cd src && $(MAKE) $@
	cd deps/hiredis && $(MAKE) $@
	cd deps/linenoise && $(MAKE) $@

dummy: