.PHONY: all test clean reallyclean python python3

all :

python : 
	$(MAKE) -C lib python

python3 : 
	$(MAKE) -C lib python3

test : python python3

clean : 
	$(MAKE) -C lib clean
