Improve documentation, improve has_pollin handling.
[~madcoder/pwqr.git] / test / Makefile
1 all: test
2
3 test: test.c
4         $(CC) -Wall -Werror -Wextra -Wno-unused-parameter -std=gnu99 $(CFLAGS) -O2 -g -lpthread -o $@ $<
5
6 clean:
7         $(RM) test
8
9 .PHONY: all clean