mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-15 12:17:36 +00:00
37256ea45d
Review: https://reviewboard.asterisk.org/r/1891/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369517 65c4cc65-6c06-0410-ace0-fbb531ad65f3
22 lines
459 B
Makefile
22 lines
459 B
Makefile
#Modify this to point to the PJSIP location.
|
|
PJBASE=~/Desktop/project/pjproject
|
|
|
|
include $(PJBASE)/build.mak
|
|
|
|
CC = $(APP_CC)
|
|
LDFLAGS = $(APP_LDFLAGS)
|
|
LDLIBS = $(APP_LDLIBS)
|
|
CFLAGS = $(APP_CFLAGS)
|
|
CPPFLAGS= ${CFLAGS}
|
|
|
|
# If your application is in a file named myapp.cpp or myapp.c
|
|
# # this is the line you will need to build the binary.
|
|
# all: myapp
|
|
#
|
|
cmp_wav: cmp_wav.c
|
|
$(CC) -o $@ $< $(CPPFLAGS) $(LDFLAGS) $(LDLIBS)
|
|
|
|
clean:
|
|
rm -f cmp_wav.o cmp_wav
|
|
|