summaryrefslogtreecommitdiff
path: root/apps/plugins/imageviewer/jpeg/jpeg.make
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-11-21 13:47:56 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-11-21 13:47:56 +0000
commite5b1a7d4237a9006b6c49c9c1c13b292ca4ecf7c (patch)
treef0b9dd1cba0a4ee70afd8b6da64a05286f76c380 /apps/plugins/imageviewer/jpeg/jpeg.make
parenteef21cb18ae4bc7cdf83830554a848e0c733a73d (diff)
downloadrockbox-e5b1a7d4237a9006b6c49c9c1c13b292ca4ecf7c.tar.gz
rockbox-e5b1a7d4237a9006b6c49c9c1c13b292ca4ecf7c.zip
FS#6321: Universal Image Viewer
This unifies jpeg viewer, png viewer, and bmp viewer to one plugin, image viewer, so that you can navigate through different image formats. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28626 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/imageviewer/jpeg/jpeg.make')
-rw-r--r--apps/plugins/imageviewer/jpeg/jpeg.make14
1 files changed, 10 insertions, 4 deletions
diff --git a/apps/plugins/imageviewer/jpeg/jpeg.make b/apps/plugins/imageviewer/jpeg/jpeg.make
index caf37fc74c..dd7addca56 100644
--- a/apps/plugins/imageviewer/jpeg/jpeg.make
+++ b/apps/plugins/imageviewer/jpeg/jpeg.make
@@ -10,12 +10,18 @@
10JPEGSRCDIR := $(IMGVSRCDIR)/jpeg 10JPEGSRCDIR := $(IMGVSRCDIR)/jpeg
11JPEGBUILDDIR := $(IMGVBUILDDIR)/jpeg 11JPEGBUILDDIR := $(IMGVBUILDDIR)/jpeg
12 12
13ROCKS += $(JPEGBUILDDIR)/jpeg.rock
14
15JPEG_SRC := $(call preprocess, $(JPEGSRCDIR)/SOURCES) 13JPEG_SRC := $(call preprocess, $(JPEGSRCDIR)/SOURCES)
16JPEG_OBJ := $(call c2obj, $(JPEG_SRC)) 14JPEG_OBJ := $(call c2obj, $(JPEG_SRC))
17 15
18# add source files to OTHER_SRC to get automatic dependencies
19OTHER_SRC += $(JPEG_SRC) 16OTHER_SRC += $(JPEG_SRC)
20 17
21$(JPEGBUILDDIR)/jpeg.rock: $(JPEG_OBJ) 18ROCKS += $(JPEGBUILDDIR)/jpeg.ovl
19
20$(JPEGBUILDDIR)/jpeg.refmap: $(JPEG_OBJ)
21$(JPEGBUILDDIR)/jpeg.link: $(PLUGIN_LDS) $(JPEGBUILDDIR)/jpeg.refmap
22$(JPEGBUILDDIR)/jpeg.ovl: $(JPEG_OBJ)
23
24# special pattern rule for compiling image decoder with extra flags
25$(JPEGBUILDDIR)/%.o: $(JPEGSRCDIR)/%.c $(JPEGSRCDIR)/jpeg.make
26 $(SILENT)mkdir -p $(dir $@)
27 $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(IMGDECFLAGS) -c $< -o $@