palladium 0.0.26

A high level, dynamic language written for the Iridium VM.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all:
	test production

test:
	cargo test

production:
	cargo build --release
	strip target/release/
	mv target/debug/palladium /usr/local/bin/
	chmod ugo+x /usr/local/bin/

dev:
	cargo build
	mv target/debug/palladium /usr/local/bin/
	chmod ugo+x /usr/local/bin/