File: module.mk

package info (click to toggle)
baresip 1.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,328 kB
  • sloc: ansic: 53,606; cpp: 2,268; makefile: 332; objc: 320; python: 259; sh: 40; xml: 19
file content (25 lines) | stat: -rw-r--r-- 585 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# module.mk
#
# Copyright (C) 2010 Alfred E. Heggestad
#

#
# To build zrtp libraries and include files, run the following commands:
#
#     git clone git@github.com:juha-h/libzrtp.git
#     cd libzrtp
#     ./bootstrap.sh
#     ./configure CFLAGS="-O0 -g3 -W -Wall -DBUILD_WITH_CFUNC \
#         -DBUILD_DEFAULT_CACHE -DBUILD_DEFAULT_TIMER"
#     make
#     sudo make install
#

MOD		:= zrtp
$(MOD)_SRCS	+= zrtp.c
$(MOD)_LFLAGS	+= -lzrtp -lbn
$(MOD)_CFLAGS   += -isystem /usr/local/include/libzrtp
$(MOD)_CFLAGS   += -Wno-strict-prototypes -Wno-zero-length-array

include mk/mod.mk