This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
event-processor/Makefile
2021-01-08 15:44:40 -08:00

11 lines
246 B
Makefile

event-processor: zig-cache/bin/event-processor
@cp zig-cache/bin/event-processor event-processor
@strip event-processor
zig-cache/bin/event-processor: src/main.zig
@zig build -Drelease-safe=true
clean:
@rm -r zig-cache
@rm event-processor