url-parser.c

URL parsing library
git clone git://git.finwo.net/lib/url-parser.c
Log | Files | Refs | README | LICENSE

Makefile (189B)


      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 {} +