We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef425b1 commit fbb7764Copy full SHA for fbb7764
.gitignore
@@ -1,3 +1,4 @@
1
+bench
2
test-bin
3
xcuserdata
4
*.xccheckout
Makefile
@@ -34,7 +34,9 @@ test: test-bin
34
test-bin: picohttpparser.c picotest/picotest.c test.c
35
$(CC) -Wall $(CFLAGS) $(LDFLAGS) -o $@ $^
36
37
+bench: bench.c picohttpparser.c
38
+
39
clean:
- rm -f test-bin
40
+ rm -f bench test-bin
41
-.PHONY: test
42
+.PHONY: all clean test
0 commit comments