diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-05-06 16:09:18 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-05-06 16:09:18 +0000 |
commit | f05b2dab839898859a0b0e7d4429d8cf9aa4965e (patch) | |
tree | c3169f59b47c088bfea63965c65a4744334fd846 /images/Makefile | |
parent | 85565b4b3235b9afa009ac1c52e034fc4c006582 (diff) | |
download | vdr-plugin-live-f05b2dab839898859a0b0e7d4429d8cf9aa4965e.tar.gz vdr-plugin-live-f05b2dab839898859a0b0e7d4429d8cf9aa4965e.tar.bz2 |
- Added recording timer indication. Fixes #302
- Added appropriate image, adaped Makefile
- Changed timers.ecpp, recordings.ecpp to use only <%cpp> (Doesn't
confuse syntax aware text editors like <{ }> did.)
Diffstat (limited to 'images/Makefile')
-rw-r--r-- | images/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/images/Makefile b/images/Makefile index 098a701..f62a90a 100644 --- a/images/Makefile +++ b/images/Makefile @@ -23,7 +23,7 @@ OBJS = logo.o record.o active.o inactive.o button_blue.o \ reload.o stop.o one_uparrow.o one_downarrow.o tv.o \ remotecontrol.o search.o record_timer.o button_red.o \ button_green.o button_new.o help.o logo_login.o \ - button_yellow.o arrow.o on_dvd.o + button_yellow.o arrow.o arrow_rec.o on_dvd.o ### Default rules: @@ -39,6 +39,9 @@ all: libimages.a %.cpp: %.png $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b -m "image/png" $< +%.cpp: %.gif + $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b -m "image/gif" $< + %.cpp: %.jpg $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b -m "image/jpg" $< |