rockbox/apps/plugins/pacbox/pacbox.make
Teruaki Kawashima e3fc65cfff change dependencies in make files:
* apps.make: depends on ctype.o instead of errno.o to depend on config-*.h so that it works for simulator.
* lang.make: add dependency of lang.h to make it sure that the file is updated properly when needed.
* plugins.make: object files don't depend on libpluginbitmaps.a.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24256 a1c6a512-1295-4272-9138-f99709370657
2010-01-17 13:03:10 +00:00

27 lines
999 B
Makefile

# __________ __ ___.
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
# \/ \/ \/ \/ \/
# $Id$
#
PACBOXSRCDIR := $(APPSDIR)/plugins/pacbox
PACBOXBUILDDIR := $(BUILDDIR)/apps/plugins/pacbox
ROCKS += $(PACBOXBUILDDIR)/pacbox.rock
PACBOX_SRC := $(call preprocess, $(PACBOXSRCDIR)/SOURCES)
PACBOX_OBJ := $(call c2obj, $(PACBOX_SRC))
# add source files to OTHER_SRC to get automatic dependencies
OTHER_SRC += $(PACBOX_SRC)
PACBOXFLAGS = $(filter-out -O%,$(PLUGINFLAGS)) -O2
$(PACBOXBUILDDIR)/pacbox.rock: $(PACBOX_OBJ)
$(PACBOXBUILDDIR)/%.o: $(PACBOXSRCDIR)/%.c $(PACBOXSRCDIR)/pacbox.make
$(SILENT)mkdir -p $(dir $@)
$(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(PACBOXFLAGS) -c $< -o $@