From 2b86c31b5a8f6e8a814fdac49ac555ccd0116ecf Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Fri, 14 Jan 2011 00:33:58 +0100 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fb40e35..4c53fbd 100644 --- a/Makefile +++ b/Makefile @@ -19,4 +19,4 @@ clean: lib/librocket.a: $(SYNC_OBJS) @mkdir -p lib - $(AR) $(ARFLAGS) $@ $< + $(AR) $(ARFLAGS) $@ $^