diff options
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" $< |