bin_SCRIPTS = test

.PHONY: all clean

all:	$(bin_SCRIPTS)
clean:
	-rm -f $(bin_SCRIPTS)

test:	test.pl ME8100.pm

%:	%.pl
	perl -c $<
	cp -f $< $@
	chmod +x $@
