1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
all: build test run_example build: cargo b test: cargo test clean: cargo clean run_example: cargo r -- --file tests/iCals/1.ical .PHONY: build, clean, run_example, all