-
Notifications
You must be signed in to change notification settings - Fork 7
/
Samples.mak
84 lines (69 loc) · 2.2 KB
/
Samples.mak
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
include ../../build.mak
include ../../version.mak
include ../../build/common.mak
RULES_MAK := $(PJDIR)/build/rules.mak
###############################################################################
# Gather all flags.
#
export _CFLAGS := $(PJ_CFLAGS) $(CFLAGS) $(PJ_VIDEO_CFLAGS)
export _CXXFLAGS:= $(PJ_CXXFLAGS) $(CFLAGS) $(PJ_VIDEO_CFLAGS)
export _LDFLAGS := $(PJ_LDFLAGS) $(PJ_LDLIBS) $(LDFLAGS)
export _LDXXFLAGS := $(PJ_LDXXFLAGS) $(PJ_LDXXLIBS) $(LDFLAGS)
SRCDIR := ../src/samples
OBJDIR := ./output/samples-$(TARGET_NAME)
BINDIR := ../bin/samples/$(TARGET_NAME)
SAMPLES := auddemo \
aviplay \
aectest \
clidemo \
confsample \
encdec \
httpdemo \
icedemo \
jbsim \
latency \
level \
mix \
pjsip-perf \
pcaputil \
playfile \
playsine \
recfile \
resampleplay \
simpleua \
simple_pjsua \
sipecho \
siprtp \
sipnagios \
sipstateless \
stateful_proxy \
stateless_proxy \
stereotest \
streamutil \
strerror \
tonegen \
vid_codec_test \
vid_streamutil
PJSUA2_SAMPLES := pjsua2_demo
ifeq ($(EXCLUDE_APP),0)
EXES := $(foreach file, $(SAMPLES), $(file)$(HOST_EXE))
PJSUA2_EXES := $(foreach file, $(PJSUA2_SAMPLES), $(file)$(HOST_EXE))
endif
ifeq ($(PJ_EXCLUDE_PJSUA2),1)
PJSUA2_EXES :=
endif
.PHONY: $(EXES)
.PHONY: $(PJSUA2_EXES)
all: $(EXES) $(PJSUA2_EXES)
$(EXES):
$(MAKE) --no-print-directory -f $(RULES_MAK) SAMPLE_SRCDIR=$(SRCDIR) [email protected] SAMPLE_CFLAGS="$(_CFLAGS)" SAMPLE_CXXFLAGS="$(_CXXFLAGS)" SAMPLE_LDFLAGS="$(_LDFLAGS)" SAMPLE_EXE=$@ APP=SAMPLE app=sample $(subst /,$(HOST_PSEP),$(BINDIR)/$@)
$(PJSUA2_EXES):
$(MAKE) --no-print-directory -f $(RULES_MAK) PJSUA2_SAMPLE_SRCDIR=$(SRCDIR) [email protected] PJSUA2_SAMPLE_CFLAGS="$(_CFLAGS)" PJSUA2_SAMPLE_CXXFLAGS="$(_CXXFLAGS)" PJSUA2_SAMPLE_LDFLAGS="$(_LDXXFLAGS)" PJSUA2_SAMPLE_EXE=$@ APP=PJSUA2_SAMPLE app=pjsua2_sample $(subst /,$(HOST_PSEP),$(BINDIR)/$@)
depend:
clean:
$(MAKE) -f $(RULES_MAK) APP=SAMPLE app=sample $@
$(MAKE) -f $(RULES_MAK) APP=PJSUA2_SAMPLE app=pjsua2_sample $@
$(subst @@,$(EXES),$(HOST_RM))
$(subst @@,$(BINDIR),$(HOST_RMDIR))
distclean realclean: clean
$(MAKE) -f $(RULES_MAK) APP=SAMPLE app=sample $@