A clone of btpd with my configuration changes.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # btpd version
- NAME = btpd
- VERSION = 0.16
-
- # paths
- PREFIX = /usr
- MANPREFIX = ${PREFIX}/share/man
-
- MISC = ./misc
- EVLOOP = ./evloop
-
- # includes and libs
- INCS = -I${MISC} -I${EVLOOP}
- LIBS = -lcrypto -lm
-
- # flags
- CPPFLAGS = ${INCS} -DHAVE_CLOCK_MONOTONIC=1 -DEVLOOP_NONE
- CFLAGS = -march=native -pipe -O3 -fno-math-errno
- LDFLAGS = ${LIBS}
- DEFS = -DPACKAGE_NAME=\"${NAME}\" -DPACKAGE_VERSION=\"${VERSION}\"
-
- # compiler
- CC = gcc
-
- # excluded
- EVLOOP_SRC := ${filter-out evloop/poll.c evloop/epoll.c evloop/kqueue.c, ${EVLOOP_SRC}}
|