frcrs 0.1.3

A robotics control framework designed to streamline the development of control systems for FRC robots
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: check

check:
	cargo check


.PHONY: compile

compile:
	cargo build --release --target arm-unknown-linux-gnueabi


.PHONY: deploy

deploy: compile

	cp target/arm-unknown-linux-gnueabi/release/libfrcrs.so javastub/src/main/deploy

	cd javastub; ./gradlew deploy


.PHONY: win

win:
	cargo build --release --target arm-unknown-linux-gnueabi

	copy target\arm-unknown-linux-gnueabi\release\libfrcrs.so javastub\src\main\deploy

	cd javastub && gradlew deploy