42 lines
992 B
Makefile
42 lines
992 B
Makefile
all:
|
|
|
|
ZIGMAKEDOC = -femit-docs -fno-emit-bin
|
|
ZIGOPTIM ?= Debug
|
|
# Linking against libc is almost mandatory, C allocator is used
|
|
# for switching (default reception and emission functions).
|
|
ZIGBUSEOPTS ?= -O$(ZIGOPTIM) -freference-trace -lc
|
|
ZIGUSROPTS ?=
|
|
ZIGC ?= zig
|
|
ZIGOPTS ?= $(ZIGBUSEOPTS) $(ZIGUSROPTS)
|
|
|
|
ipcd: src/ipcd.zig
|
|
$(ZIGC) build-exe $(ZIGOPTS) $^
|
|
|
|
tcpd: src/tcpd.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) $^
|
|
|
|
TO_CLEAN != ls misc/*.zig | sed 's/.zig$\//' | sed 's_misc/__'
|
|
TO_CLEAN += ipcd pong pongd snd-*
|
|
TO_CLEAN += *.o
|
|
clean:
|
|
@-rm $(TO_CLEAN) 2>/dev/null
|
|
|
|
mrproper: clean
|
|
@-rm -r docs zig-cache zig-out 2>/dev/null
|
|
|
|
ACCESS_LOGS ?= ./access.log
|
|
servedoc:
|
|
darkhttpd docs/ --addr 127.0.0.1 --port 35000 --log $(ACCESS_LOGS)
|
|
|
|
# You can add your specific instructions there.
|
|
-include makefile.user
|