.PHONY: default build test clean

default: build test clean

PYTHON = python$(py)

build:

test:
	${PYTHON} sendrecv.py

clean:
