socket-util.c

Socket helper utils
git clone git://git.finwo.net/lib/socket-util.c
Log | Files | Refs | README | LICENSE

Makefile (188B)


      1 FIND=$(shell which gfind find | head -1)
      2 
      3 .PHONY: test
      4 test:
      5 	$(MAKE) -C test run
      6 
      7 .PHONY: format
      8 format:
      9 	$(FIND) src/ -type f \( -name '*.c' -o -name '*.h' \) -exec clang-format -i {} +