changeset 12634:e03ae519f344

ranlib cleanup
author alex
date Thu, 24 Jun 2004 13:54:08 +0000
parents 702b39f72394
children 1eab3821113c
files libmpcodecs/Makefile libvo/Makefile
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/Makefile	Thu Jun 24 13:53:49 2004 +0000
+++ b/libmpcodecs/Makefile	Thu Jun 24 13:54:08 2004 +0000
@@ -58,9 +58,11 @@
 
 $(LIBNAME):     $(OBJS)
 	$(AR) r $(LIBNAME) $(OBJS)
+	$(RANLIB) $(LIBNAME)
 
 $(LIBNAME2):     $(OBJS2)
 	$(AR) r $(LIBNAME2) $(OBJS2)
+	$(RANLIB) $(LIBNAME2)
 
 clean:
 	rm -f *.o *.a *~
--- a/libvo/Makefile	Thu Jun 24 13:53:49 2004 +0000
+++ b/libvo/Makefile	Thu Jun 24 13:54:08 2004 +0000
@@ -21,6 +21,7 @@
 
 $(LIBNAME):     $(OBJS)
 	$(AR) r $(LIBNAME) $(OBJS)
+	$(RANLIB) $(LIBNAME)
 
 vo_mpegpes.o: vo_mpegpes.c
 	$(CC) -c $(CFLAGS) $(DVB_INC) -o $@ $<