fop(1): working prototype

This commit is contained in:
2023-12-27 15:44:19 -07:00
parent 36c0c9193c
commit 7eda8bb721
2 changed files with 79 additions and 0 deletions

View File

@@ -60,6 +60,9 @@ test: build
false: src/false.rs build_dir
$(RUSTC) $(RUSTCFLAGS) -o build/bin/false src/false.rs
fop: src/fop.rs build_dir
$(RUSTC) $(RUSTCFLAGS) -o build/bin/fop src/fop.rs
intcmp: src/intcmp.c build_dir
$(CC) $(CFLAGS) -o build/bin/intcmp src/intcmp.c