makefile: add all object files to archive

For some reason I haven't noticed until now that the Makefile
only added the first object-file to the library. Fix that.
This commit is contained in:
Erik Faye-Lund 2011-01-14 00:33:58 +01:00
parent e43c33a1ab
commit 2b86c31b5a

View File

@ -19,4 +19,4 @@ clean:
lib/librocket.a: $(SYNC_OBJS)
@mkdir -p lib
$(AR) $(ARFLAGS) $@ $<
$(AR) $(ARFLAGS) $@ $^