summaryrefslogtreecommitdiff
path: root/pagelib/Makefile
diff options
context:
space:
mode:
authorSascha Volkenandt <sascha (at) akv-soft (dot) de>2007-01-05 19:38:54 +0000
committerSascha Volkenandt <sascha (at) akv-soft (dot) de>2007-01-05 19:38:54 +0000
commit45fe6c4b0efcd807dd67bb1bcdc5e104583332ae (patch)
tree3cc0e5741faf0c75497ca216d07def2924c4b13d /pagelib/Makefile
parent14bb52978b82dcb82904cf42d7f33b6a7543f618 (diff)
downloadvdr-plugin-live-45fe6c4b0efcd807dd67bb1bcdc5e104583332ae.tar.gz
vdr-plugin-live-45fe6c4b0efcd807dd67bb1bcdc5e104583332ae.tar.bz2
- moved pagelib back to plugin
- incorporated all code into one shared object
Diffstat (limited to 'pagelib/Makefile')
-rw-r--r--pagelib/Makefile33
1 files changed, 0 insertions, 33 deletions
diff --git a/pagelib/Makefile b/pagelib/Makefile
deleted file mode 100644
index 78389da..0000000
--- a/pagelib/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-CXX ?= g++
-AR ?= ar
-
-CXXFLAGS ?= -O2 -Woverloaded-virtual -Wall -fPIC
-
-INCLUDES += -I.. -I$(VDRDIR)/include
-
-### The directory environment:
-
-VDRDIR ?= ../../../..
-
-### The object files (add further files here):
-
-OBJS = tools.o
-
-### Default rules:
-
-.PHONY: all clean
-
-all: libpagelib.a
-
-### Implicit rules:
-
-%.o: %.cpp
- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
-
-### Targets:
-
-libpagelib.a: $(OBJS)
- $(AR) r $@ $^
-
-clean:
- @rm -f *~ *.o core* libpagelib.a