1#
2# mod.mk
3#
4# Copyright (C) 2010 Creytiv.com
5#
6
7SRCS	+= main/init.c
8SRCS	+= main/main.c
9SRCS	+= main/method.c
10
11ifneq ($(HAVE_EPOLL),)
12SRCS	+= main/epoll.c
13endif
14
15ifneq ($(USE_OPENSSL),)
16SRCS    += main/openssl.c
17endif
18