home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / WINLBSRC.ZIP / IMPORT.MAK < prev    next >
Encoding:
Text File  |  1992-06-10  |  307 b   |  16 lines

  1. # IMPORT.MAK - build the WINDOWS 3.1 import library.
  2.  
  3. LIBDIR = ..\lib
  4. LIBFILE = $(LIBDIR)\import.lib
  5.  
  6. MODEL = l
  7.  
  8. all : $(LIBFILE)
  9.  
  10. !include "..\rules.mak"
  11.  
  12. $(LIBFILE) : win31.def profc.obj
  13.     if exist $(LIBFILE) del $(LIBFILE)
  14.     implib $(LIBFILE) win31.def
  15.     tlib $(LIBFILE) +$(OBJDIR)\profc.obj
  16.