Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mklib.ar-ruv 680B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #!/bin/sh
  2. # Make a standard Unix .a library file with 'ar ruv'
  3. #--identification------------------------------------------------------
  4. # $Id: mklib.ar-ruv,v 1.2 1999/09/15 15:10:20 brianp Exp $
  5. # $Log: mklib.ar-ruv,v $
  6. # Revision 1.2 1999/09/15 15:10:20 brianp
  7. # added third, tiny version number to arguments
  8. #
  9. # Revision 1.1 1999/08/19 13:52:57 brianp
  10. # initial check-in (post-crash)
  11. #
  12. #--common--------------------------------------------------------------
  13. LIBRARY=$1
  14. shift 1
  15. MAJOR=$1
  16. shift 1
  17. MINOR=$1
  18. shift 1
  19. TINY=$1
  20. shift 1
  21. OBJECTS=$*
  22. #--platform-------------------------------------------------------------
  23. #ar ruv $LIBRARY $OBJECTS
  24. ar ru $LIBRARY $OBJECTS