A clone of btpd with my configuration changes.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

config.mk 532 B

il y a 4 ans
1234567891011121314151617181920212223242526
  1. # btpd version
  2. NAME = btpd
  3. VERSION = 0.16
  4. # paths
  5. PREFIX = /usr
  6. MANPREFIX = ${PREFIX}/share/man
  7. MISC = ./misc
  8. EVLOOP = ./evloop
  9. # includes and libs
  10. INCS = -I${MISC} -I${EVLOOP}
  11. LIBS = -lcrypto -lm -lpthread
  12. # flags
  13. CPPFLAGS = ${INCS} -DHAVE_CLOCK_MONOTONIC=1 -DEVLOOP_NONE
  14. CFLAGS = -march=native -pipe -O3 -fno-math-errno
  15. LDFLAGS = ${LIBS}
  16. DEFS = -DPACKAGE_NAME=\"${NAME}\" -DPACKAGE_VERSION=\"${VERSION}\"
  17. # compiler
  18. CC = gcc
  19. # excluded
  20. EVLOOP_SRC := ${filter-out evloop/poll.c evloop/epoll.c evloop/kqueue.c, ${EVLOOP_SRC}}