diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-03 19:33:54 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-03 19:33:54 +0000 |
commit | 39b41416a9b2699f1aae3a7a1a638ebe9708315d (patch) | |
tree | a73642c73e9d329c81a83cca84f5fa513ae7fc52 | |
parent | 6fd34231ed98447d10a15c7cad6d173d2a7d154d (diff) | |
download | vdr-plugin-live-39b41416a9b2699f1aae3a7a1a638ebe9708315d.tar.gz vdr-plugin-live-39b41416a9b2699f1aae3a7a1a638ebe9708315d.tar.bz2 |
Use incremental linking for libtnt-live
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | css/Makefile | 6 | ||||
-rw-r--r-- | pages/Makefile | 6 |
3 files changed, 10 insertions, 10 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.14 2007/01/03 18:33:33 tadi Exp $ +# $Id: Makefile,v 1.15 2007/01/03 19:33:54 tadi Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -58,8 +58,8 @@ SUBDIRS = httpd pages css PLUGINOBJS = $(PLUGIN).o thread.o tntconfig.o setup.o i18n.o WEBOBJS = tools.o -WEBLIBS = pages/libpages.a \ - css/libcss.a +WEBLIBS = pages/libpages.o \ + css/libcss.o ### Default rules: @@ -85,7 +85,7 @@ $(DEPFILE): Makefile SUBDIRS: @for dir in $(SUBDIRS); do \ - make -C $$dir CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" lib$$dir.a ; \ + make -C $$dir CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" ; \ done libvdr-$(PLUGIN).so: $(PLUGINOBJS) $(LIBS) diff --git a/css/Makefile b/css/Makefile index 006548e..8fb86a2 100644 --- a/css/Makefile +++ b/css/Makefile @@ -30,10 +30,10 @@ OBJS = styles.o ### Targets: -all: libcss.a +all: libcss.o -libcss.a: $(OBJS) - $(AR) r $@ $^ +libcss.o: $(OBJS) + $(LD) -i -o $@ $^ clean: @rm -f *~ *.o core* libcss.a $(OBJS:%.o=%.cpp) diff --git a/pages/Makefile b/pages/Makefile index 74aa642..b37c527 100644 --- a/pages/Makefile +++ b/pages/Makefile @@ -42,10 +42,10 @@ OBJS = menu.o channels.o schedule.o whats_on_now.o ### Targets: -all: libpages.a +all: libpages.o -libpages.a: $(OBJS) - $(AR) r $@ $^ +libpages.o: $(OBJS) + $(LD) -i -o $@ $^ clean: @rm -f *~ *.o core* libpages.a $(OBJS:%.o=%.cpp) |