HSRCDIR=hsrc

DOC := doc

SUBDIRS = $(HSRCDIR) $(DOC) tests

all: $(SUBDIRS)

doc::
	make -C $(DOC)
tests::
	make -C tests


