bund_stdlib_analysis 0.1.0

Numeric and text analysis for BUND programming language
Documentation
SOURCES=$(wildcard src/*.rs)
TESTS=$(wildcard tests/*.rs)


all: $(SOURCES) Makefile
	cargo build

rebuild:
	make clean
	make all

test: $(TESTS)
	cargo test -- --show-output

clean:
	cargo clean
	cargo update

commit:
	aic -ac
	git push