summaryrefslogtreecommitdiff
path: root/images
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-03 22:06:28 +0000
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-03 22:06:28 +0000
commit1682dbf6066acd98c557bdf73d9b4c484de46943 (patch)
tree9bc4ff5bed338d68b48b2864999326b55f3eae8d /images
parentc4c4798dea683c580397e7c979b128920653eb24 (diff)
downloadvdr-plugin-live-1682dbf6066acd98c557bdf73d9b4c484de46943.tar.gz
vdr-plugin-live-1682dbf6066acd98c557bdf73d9b4c484de46943.tar.bz2
added logo.png and Makefile
Diffstat (limited to 'images')
-rw-r--r--images/Makefile39
-rw-r--r--images/logo.pngbin0 -> 10993 bytes
2 files changed, 39 insertions, 0 deletions
diff --git a/images/Makefile b/images/Makefile
new file mode 100644
index 0000000..cedd832
--- /dev/null
+++ b/images/Makefile
@@ -0,0 +1,39 @@
+CXX ?= g++
+AR ?= ar
+ECPPC ?= ecppc
+
+CXXFLAGS ?= -O2 -Woverloaded-virtual -Wall -fPIC
+
+CXXFLAGS += `tntnet-config --cxxflags`
+LDFLAGS += `tntnet-config --libs`
+
+INCLUDES += -I..
+
+### The directory environment:
+VDRDIR ?= ../../../..
+
+### The object files (add further files here):
+
+OBJS = logo.o
+
+### Default rules:
+
+.PHONY: all clean
+
+### Implicit rules:
+
+%.o: %.cpp
+ $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
+
+%.cpp: %.png
+ $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b $<
+
+### Targets:
+
+all: libimages.a
+
+libimages.a: $(OBJS)
+ $(AR) r $@ $^
+
+clean:
+ @rm -f *~ *.o core* libimages.a $(OBJS:%.o=%.cpp)
diff --git a/images/logo.png b/images/logo.png
new file mode 100644
index 0000000..034dacc
--- /dev/null
+++ b/images/logo.png
Binary files differ