diff sqlite/Makefile @ 1680:92b4af21e6d2 trunk

[svn] Fixed some Makefiles to make it work with BSD make. I checked that it doesn't break gmake (compile & run works).
author js
date Wed, 13 Sep 2006 13:56:08 -0700
parents e402e0217870
children 0ca5a530be95
line wrap: on
line diff
--- a/sqlite/Makefile	Wed Sep 13 11:03:25 2006 -0700
+++ b/sqlite/Makefile	Wed Sep 13 13:56:08 2006 -0700
@@ -18,3 +18,6 @@
 OBJECTS=${SOURCES:.c=.o}
 
 include ../mk/objective.mk
+
+libsqlite.a: $(OBJECTS)
+	$(AR) cq $@ $(OBJECTS)