aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2023-02-01 09:22:56 -0330
committerSam Anthony <sam@samanthony.xyz>2023-02-01 09:22:56 -0330
commite5f32ef621ec1fbad0b86ddcdb5b2e32077891c1 (patch)
treea2934d2a0e11e7ce25db988fcbb001e0fe48fa39 /Makefile
parent50b874b8f9349f5bd9b1371c2a1a3d9ce14ad0fd (diff)
downloadpfc-e5f32ef621ec1fbad0b86ddcdb5b2e32077891c1.zip
data structures
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ecf8c29
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+build: test format
+ cargo build
+
+run: build
+ ./target/debug/pfc
+
+doc: test format
+ cargo doc --open
+
+test: format
+ cargo test
+
+format:
+ cargo fmt --all