Makefile 137 B

1234567891011
  1. # Makefile for epoll selftests
  2. all: test_epoll
  3. %: %.c
  4. gcc -pthread -g -o $@ $^
  5. run_tests: all
  6. ./test_epoll
  7. clean:
  8. $(RM) test_epoll