diff options
Diffstat (limited to 'apps/plugins/bitmaps/remote_native')
| -rw-r--r-- | apps/plugins/bitmaps/remote_native/Makefile | 32 | ||||
| -rw-r--r-- | apps/plugins/bitmaps/remote_native/SOURCES | 0 |
2 files changed, 32 insertions, 0 deletions
diff --git a/apps/plugins/bitmaps/remote_native/Makefile b/apps/plugins/bitmaps/remote_native/Makefile new file mode 100644 index 0000000..91a4290 --- /dev/null +++ b/apps/plugins/bitmaps/remote_native/Makefile @@ -0,0 +1,32 @@ +# __________ __ ___. +# Open \______ \ ____ ____ | | _\_ |__ _______ ___ +# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +# \/ \/ \/ \/ \/ +# $Id$ +# + +INCLUDES= -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I. -I$(BUILDDIR) \ + -I$(OBJDIR) +CFLAGS = $(GCCOPTS) $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) + +# This sets up 'SRC' based on the files mentioned in SOURCES +include $(TOOLSDIR)/makesrc.inc + +SOURCES = $(SRC) +CSRC := $(SRC:%.bmp=$(OBJDIR)/%.c) +OBJS := $(CSRC:%.c=%.o) +DEPFILE = $(OBJDIR)/dep-bitmaps-remotenative + +BMP2RB = $(BMP2RB_REMOTENATIVE) +OUTPUT = $(BUILDDIR)/libpluginbitmapsremotenative.a + +include $(TOOLSDIR)/makebmp.inc + +clean: + @echo "cleaning plugins/bitmaps/remote_native" + @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) + @rmdir $(OBJDIR) + +-include $(DEPFILE) diff --git a/apps/plugins/bitmaps/remote_native/SOURCES b/apps/plugins/bitmaps/remote_native/SOURCES new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/apps/plugins/bitmaps/remote_native/SOURCES |