home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / COMBO.ZIP / COMBOSUP < prev    next >
Text File  |  1990-01-28  |  626b  |  35 lines

  1.  
  2. # Abbreviations
  3. #
  4. LF    = /align:16 /nod
  5. OBJS    = combosup.obj
  6.  
  7. # Inference Rules
  8. #
  9.  
  10. .c.obj:
  11.     cl -Zp -W3 -c -u -Alfu -G2s $*.c
  12.  
  13. # Import Libraries
  14. #
  15. combosup.lib:    combosup combosup.def
  16.     implib $*.lib $*.def
  17.  
  18. # C files
  19. #
  20.  
  21. combosup.obj:    combosup.c combosup.h
  22.  
  23.  
  24. # Main files:  combosup.DLL, combosup.SYM
  25. #
  26. combosup.lnk:    combosup
  27.     echo $(OBJS)    >  combosup.lnk
  28.     echo combosup.dll    >> combosup.lnk
  29.     echo combosup.map    >> combosup.lnk
  30.     echo os2 llibcdll   >> combosup.lnk
  31.     echo combosup.def    >> combosup.lnk
  32.  
  33. combosup.dll:    combosup combosup.def $(OBJS)
  34.     link $(LF) @combosup.lnk
  35.