home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / wpj_mag / wpjv1n4.zip / ROD.ZIP / LIB.MAK < prev    next >
Text File  |  1993-02-22  |  669b  |  18 lines

  1. DEFS= testlib.def 
  2.  
  3. # Notice that I placed these two DEF files under seperate macros. They could
  4. # have been placed on the same macro line, but I wanted to demonstrate how
  5. # you can create an import library from multiple definition files. The
  6. # resulting library 'test.lib' can be linked into your DLLs.
  7. #
  8. # The 'implib' statement in the build commands creates an import library
  9. # out of the exports listed in the definition file. 
  10. #
  11. # The 'lib' statement combines the import libraries into one library. LIB
  12. # allows you to manage libraries, see Microsoft documentation for more
  13. # information.
  14.  
  15. test.lib: $(DEFS)
  16.     del test.lib
  17.     implib test.lib $(DEFS)
  18.