

all:
	$(MAKE) -C src all
	$(MAKE) -C testcode all

clean:
	$(MAKE) -C src clean
	$(MAKE) -C testcode clean

test: all
	$(MAKE) -C testcode test
