7719d297f2
- Rename the mandelbrot plugin to fractals - Update manual accordingly - Separate plugin's functionality into separate files - Lay the ground for having fractals sets other than the Mandelbrot set. For that the following will need to be implemented: - Create a new file for the new fracral set - Provide key mapping to switch between sets git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24230 a1c6a512-1295-4272-9138-f99709370657
21 lines
786 B
Makefile
21 lines
786 B
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
|
|
FRACTALSSRCDIR := $(APPSDIR)/plugins/fractals
|
|
FRACTALSBUILDDIR := $(BUILDDIR)/apps/plugins/fractals
|
|
|
|
ROCKS += $(FRACTALSBUILDDIR)/fractals.rock
|
|
|
|
FRACTALS_SRC := $(call preprocess, $(FRACTALSSRCDIR)/SOURCES)
|
|
FRACTALS_OBJ := $(call c2obj, $(FRACTALS_SRC))
|
|
|
|
# add source files to OTHER_SRC to get automatic dependencies
|
|
OTHER_SRC += $(FRACTALS_SRC)
|
|
|
|
$(FRACTALSBUILDDIR)/fractals.rock: $(FRACTALS_OBJ)
|