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 /css | |
parent | 6fd34231ed98447d10a15c7cad6d173d2a7d154d (diff) | |
download | vdr-plugin-live-39b41416a9b2699f1aae3a7a1a638ebe9708315d.tar.gz vdr-plugin-live-39b41416a9b2699f1aae3a7a1a638ebe9708315d.tar.bz2 |
Use incremental linking for libtnt-live
Diffstat (limited to 'css')
-rw-r--r-- | css/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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) |