summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
Diffstat (limited to 'css')
-rw-r--r--css/Makefile6
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)