home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / LISTGIF.ZIP / LISTGIF next >
Text File  |  1991-06-27  |  200b  |  16 lines

  1. #
  2. # make file that will do the work for us
  3. #
  4.  
  5. CFLAGS  =/c /AL 
  6.  
  7. .c.obj:
  8.     cl $(CFLAGS) $*.c
  9.  
  10. listgif.obj:    listgif.c    
  11.  
  12. listgif.exe:    listgif.obj
  13.     link $*.obj, /PM:VIO,,;
  14.  
  15.  
  16.