rockbox/apps/plugins/fft/fft.make
Frank Gevaerts 43264a946f New plugin: FFT, A frequency analyzer plugin
There is some more work needed:
- Keymaps are definitely not perfect, touchscreen targets are disabled due to no keymap
- There is no manual yet

Author: Delyan Kratunov 
Flyspray: FS#10065



git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24587 a1c6a512-1295-4272-9138-f99709370657
2010-02-10 19:44:11 +00:00

27 lines
956 B
Makefile

# __________ __ ___.
# 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 $@