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

25 lines
493 B
Makefile

all:
ZIGMAKEDOC = -femit-docs -fno-emit-bin
ZIGOPTIM ?= Debug
ZIGBUSEOPTS ?= -O$(ZIGOPTIM) -freference-trace
ZIGUSROPTS ?=
ZIGC ?= zig
ZIGOPTS ?= $(ZIGBUSEOPTS) $(ZIGUSROPTS)
ipcd: src/ipcd.zig
$(ZIGC) build-exe $(ZIGOPTS) $^
test-libipc: src/main.zig
$(ZIGC) test $(ZIGOPTS) $^
test-ipcd: src/ipcd.zig
$(ZIGC) test $(ZIGOPTS) $^
doc: src/ipcd.zig
$(ZIGC) build-exe $(ZIGOPTS) $(ZIGMAKEDOC) $^
# You can add your specific instructions there.
-include makefile.user