summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--loader/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/Makefile b/loader/Makefile
index 369f9867d7..0f8ab351e1 100644
--- a/loader/Makefile
+++ b/loader/Makefile
@@ -16,8 +16,8 @@ OBJS := $(OBJS:.s=.o)
all: libloader.a
libloader.a: $(OBJS)
- $(AR) -r libloader.a $(OBJS)
- $(RANLIB) libloader.a
+ $(AR) -r $@ $^
+ $(RANLIB) $@
clean:
rm -f *.o *.a *~