summaryrefslogtreecommitdiffstats
path: root/apps/plugins/fft/fft.make
blob: b14566ca583ce85c0ef9c06826428d59fa2e1b18 (plain)
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
#             __________               __   ___.
#   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
#   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
#   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
#   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
#                     \/            \/     \/    \/            \/
# $Id$
#

FFTSRCDIR := $(APPSDIR)/plugins/fft
FFTBUILDDIR := $(BUILDDIR)/apps/plugins/fft

ROCKS += $(FFTBUILDDIR)/fft.rock

FFT_SRC := $(call preprocess, $(FFTSRCDIR)/SOURCES)
FFT_OBJ := $(call c2obj, $(FFT_SRC))

# add source files to OTHER_SRC to get automatic dependencies
OTHER_SRC += $(FFT_SRC)

FFTFLAGS = $(filter-out -O%,$(PLUGINFLAGS)) -O3 -DFIXED_POINT=16

$(FFTBUILDDIR)/fft.rock: $(FFT_OBJ)

$(FFTBUILDDIR)/%.o: $(FFTSRCDIR)/%.c $(FFTSRCDIR)/fft.make
	$(SILENT)mkdir -p $(dir $@)
	$(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(FFTFLAGS) -c $< -o $@