home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 5 / MA_Cover_5.iso / ppc / mesa / mklib.beos < prev    next >
Encoding:
Text File  |  1998-01-31  |  850 b   |  37 lines

  1. #!/bin/sh
  2.  
  3. # Make a library file for Beos
  4.  
  5. #--identification------------------------------------------------------
  6.  
  7. # $Id: mklib.beos,v 1.1 1997/10/22 00:02:43 brianp Exp $
  8.  
  9. # $Log: mklib.beos,v $
  10. # Revision 1.1  1997/10/22 00:02:43  brianp
  11. # Initial revision
  12. #
  13.  
  14. #--common--------------------------------------------------------------
  15.  
  16. # Usage:  mklib libname major minor file.o ...
  17. #
  18. # First argument is name of output library (LIBRARY)
  19. # Second arg is major version number (MAJOR)
  20. # Third arg is minor version number (MINOR)
  21. # Rest of arguments are object files (OBJECTS)
  22.  
  23. LIBRARY=$1
  24. shift 1
  25.  
  26. MAJOR=$1
  27. shift 1
  28.  
  29. MINOR=$1
  30. shift 1
  31.  
  32. OBJECTS=$*
  33.  
  34. #--platform-------------------------------------------------------------
  35.  
  36. mwcc -sharedlibrary -export pragma -term '' -init '' /boot/system/lib/libbe.so /boot/develop/libraries/libdll.a -o $LIBRARY $OBJECTS
  37.