1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 13:25:45 +02:00
bees/Makefile
2016-11-17 12:12:13 -05:00

16 lines
155 B
Makefile

default install all: lib src test
clean:
git clean -dfx
.PHONY: lib src
lib:
$(MAKE) -C lib
src: lib
$(MAKE) -C src
test: lib src
$(MAKE) -C test