From 4832db38b75b2f34a91c63f02a7ed6de9edb1622 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Fri, 15 Apr 2011 01:17:09 +0200 Subject: omap3-isp-dsp sample application initial import Signed-off-by: Laurent Pinchart --- dsp/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 dsp/Makefile (limited to 'dsp/Makefile') diff --git a/dsp/Makefile b/dsp/Makefile new file mode 100644 index 0000000..2828921 --- /dev/null +++ b/dsp/Makefile @@ -0,0 +1,27 @@ +CL6X := $(DSP_CGT)/bin/cl6x +LNK6X := $(DSP_CGT)/bin/lnk6x +DLLCREATE := $(DSP_DOFFBUILD)/bin/DLLcreate + +CFLAGS := -O3 -I$(DSP_CGT)/include +OBJECTS := bridge.o64P threshold.o64P + +all: threshold.dll64P + +threshold.x64P: $(OBJECTS) + +# pretty print +%.o64P: %.s + $(CL6X) $(CFLAGS) -mv=64p -eo.o64P -c $< + +%.o64P: %.c + $(CL6X) $(CFLAGS) -mv=64p -eo.o64P -c $< + +%.x64P: + $(LNK6X) -r -cr --localize='$$bss' -o $@ $+ + +%.dll64P: %.x64P + $(DLLCREATE) $< -o=$@ + +clean: + $(RM) *.o64P *.x64P *.dll64P + -- cgit v1.2.3