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

20 lines
264 B
Makefile

default install all: lib src test README.html
clean:
git clean -dfx
.PHONY: lib src
lib:
$(MAKE) -C lib
src: lib
$(MAKE) -C src
test: lib src
$(MAKE) -C test
README.html: README.md
markdown README.md > README.html.new
mv -f README.html.new README.html