CGit
Gitweb
projects
/
processor-sdk
/
performance-audio-sr.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
PASDK-258:Merge remote-tracking branch 'origin/dev_pasdk_frank_pasdk258Alpha4Release'
[processor-sdk/performance-audio-sr.git]
/
psdk_cust
/
libarch_k2g_1_0_1_0
/
examples
/
Makefile
1
.PHONY: clean all
2
3
4
ifeq ($(LIBOS), LIB_OPENCL)
5
examp_dir = arm+dsp
6
else
7
examp_dir = dsponly
8
endif
9
10
all:
11
cd $(examp_dir); make TARGET=$(TARGET) LIBOS=$(LIBOS)
12
13
clean:
14
cd arm+dsp; make clean; cd ../dsp-only; make clean;
15