Simple makefile.
This commit is contained in:
parent
0e2043c5e6
commit
6038a277f3
16
zig-impl/makefile
Normal file
16
zig-impl/makefile
Normal file
@ -0,0 +1,16 @@
|
||||
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) $^
|
||||
|
||||
d: src/main.zig
|
||||
$(ZIGC) build-exe $(ZIGOPTS) -freference-trace $^
|
Reference in New Issue
Block a user