summaryrefslogtreecommitdiff
path: root/tests/pjsua/tools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pjsua/tools/Makefile')
-rw-r--r--tests/pjsua/tools/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/pjsua/tools/Makefile b/tests/pjsua/tools/Makefile
new file mode 100644
index 0000000..189eb00
--- /dev/null
+++ b/tests/pjsua/tools/Makefile
@@ -0,0 +1,21 @@
+#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
+