summaryrefslogtreecommitdiff
path: root/css/Makefile
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-03 22:08:10 +0000
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-03 22:08:10 +0000
commit7b1557f421b955968e1dc90ffa11e7a836b47af6 (patch)
tree0d4961da560c6762e641f01d84be200b4326d656 /css/Makefile
parent1682dbf6066acd98c557bdf73d9b4c484de46943 (diff)
downloadvdr-plugin-live-7b1557f421b955968e1dc90ffa11e7a836b47af6.tar.gz
vdr-plugin-live-7b1557f421b955968e1dc90ffa11e7a836b47af6.tar.bz2
using -Wl,--whole-archive to link sublibraries
Diffstat (limited to 'css/Makefile')
-rw-r--r--css/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/css/Makefile b/css/Makefile
index 8fb86a2..006548e 100644
--- a/css/Makefile
+++ b/css/Makefile
@@ -30,10 +30,10 @@ OBJS = styles.o
### Targets:
-all: libcss.o
+all: libcss.a
-libcss.o: $(OBJS)
- $(LD) -i -o $@ $^
+libcss.a: $(OBJS)
+ $(AR) r $@ $^
clean:
@rm -f *~ *.o core* libcss.a $(OBJS:%.o=%.cpp)