# simple jump makefile

binary:
	( cd src ; $(MAKE) )

install:
	( cd src ; $(MAKE) install )

clean:
	( cd src ; $(MAKE) clean )
