Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/zig-impl/makefile

20 lines
305 B
Makefile

all:
ZIGC = zig
ZIGOPTS = -OReleaseSmall
c: src/send-msg.zig
$(ZIGC) build-exe $(ZIGOPTS) $^
s: src/receive-msg.zig
$(ZIGC) build-exe $(ZIGOPTS) $^
m: src/main.zig
$(ZIGC) build-exe $(ZIGOPTS) $^
t: src/main.zig
$(ZIGC) test $^
d: src/main.zig
$(ZIGC) build-exe $(ZIGOPTS) -freference-trace $^