Archived
3
0
This commit is contained in:
Philippe Pittoli 2022-12-29 10:33:02 +01:00
parent de1d221881
commit 4b0778e37d

View File

@ -19,6 +19,13 @@ test-ipcd: src/ipcd.zig
doc: src/ipcd.zig
$(ZIGC) build-exe $(ZIGOPTS) $(ZIGMAKEDOC) $^
TO_CLEAN != ls misc/*.zig | sed 's/.zig$\//' | sed 's_misc/__'
TO_CLEAN += ipcd
clean:
@-rm $(TO_CLEAN) 2>/dev/null
mrproper: clean
@-rm -r docs zig-cache zig-out 2>/dev/null
# You can add your specific instructions there.
-include makefile.user